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()
|
||
|
}
|
||
|
}
|
||
|
}
|