< How to start an animation immediately after a view appears | How to synchronize animations from one view to another with matchedGeometryEffect() > |
Updated for Xcode 14.2
The order in which we use SwiftUI’s animation()
modifier affects which modifiers get animated, and it’s also possible to add multiple animation()
modifiers in order to get different animations.
For example, we could write code to create a button that animates between enabled and disabled states, making the corner rounding and background color changes. If we wanted the corner rounding to animate but not the color change, we’d use an animation such as animation(.default)
after the clip shape, then animation(nil)
after the background, like this:
struct ContentView: View {
@State private var isEnabled = false
var body: some View {
Button("Press Me") {
isEnabled.toggle()
}
.foregroundColor(.white)
.frame(width: 200, height: 200)
.background(isEnabled ? .green : .red)
.animation(nil, value: isEnabled)
.clipShape(RoundedRectangle(cornerRadius: isEnabled ? 100 : 0))
.animation(.default, value: isEnabled)
}
}
Download this as an Xcode project
Using this technique it’s possible to animate every modifier differently if you need to.
SPONSORED Play is the first native iOS design tool created for designers and engineers. You can install Play for iOS and iPad today and sign up to check out the Beta of our macOS app with SwiftUI code export. We're also hiring engineers!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.