UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

animating the Text element in SwiftUI

Forums > SwiftUI

I just noticed that when animating changes of the string in my Text("")-Element, that for single lines, the animation looks different (from left to right) than when the text spreads over more than one line (from top to bottom or nothing at all, just appearing) :

gif

This is my code:

import SwiftUI

struct ContentView: View {

    @State private var text02 = ""

    var body: some View {
        VStack {
            Text(text02)
                .frame(width: 280, height: 280, alignment: .topLeading)
                .padding()
                .background(.mint)
                .animation(.easeInOut, value: text02)

            Button(action: { text02 += "Hypothetically " }) {
                Text("add word")
            }
        }
    }
}

Am I doing something wrong?

3      

Hacking with Swift is sponsored by RevenueCat

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.