< 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.
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Link copied to your pasteboard.