mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2025-01-01 03:37:26 +01:00
18 lines
403 B
Swift
18 lines
403 B
Swift
|
//
|
||
|
// https://mczachurski.dev
|
||
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
||
|
// Licensed under the MIT License.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
extension View {
|
||
|
func withoutAnimation(action: @escaping () -> Void) {
|
||
|
var transaction = Transaction()
|
||
|
transaction.disablesAnimations = true
|
||
|
withTransaction(transaction) {
|
||
|
action()
|
||
|
}
|
||
|
}
|
||
|
}
|