< How to create custom animated drawings with TimelineView and Canvas | How to create a spring animation > |
Updated for Xcode 14.2
SwiftUI has built-in support for animations with its animation()
modifier. To use this modifier, place it after any other modifiers for your views, tell it what kind of animation you want, and also make sure you attach it to a particular value so the animation triggers only when that specific value changes.
For example, this code creates a button that increases its scale effect by 1 each time it’s pressed:
struct ContentView: View {
@State private var scale = 1.0
var body: some View {
Button("Press here") {
scale += 1
}
.scaleEffect(scale)
.animation(.linear(duration: 1), value: scale)
}
}
Download this as an Xcode project
That makes the animation happen over 1 second, but if you don’t want to specify a precise time for your animation you can just use .linear
.
Instead of simple linear animations, you can specify a curve from .easeIn
, .easeOut
, .easeInOut
, or use .timingCurve
to specify your own control points.
For example, this animates the scale effect so that it starts slow and gets faster:
struct ContentView: View {
@State private var scale = 1.0
var body: some View {
Button("Press here") {
scale += 1
}
.scaleEffect(scale)
.animation(.easeIn, value: scale)
}
}
Download this as an Xcode project
You can animate many other modifiers, such as 2D and 3D rotation, opacity, border, and more. For example, this makes a button that spins around and increases its border every time it’s tapped:
struct ContentView: View {
@State private var angle = 0.0
@State private var borderThickness = 1.0
var body: some View {
Button("Press here") {
angle += 45
borderThickness += 1
}
.padding()
.border(.red, width: borderThickness)
.rotationEffect(.degrees(angle))
.animation(.easeIn, value: angle)
}
}
Download this as an Xcode project
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.