I am trying to animate text to make it scroll across the screen, (using it to make a stock app), I am unable to get it to go completely off the screen can someone please help...
This is what I have so far
let text = "Some text to animate" private var is = true var body: some View { VStack { Text(text) .fixedSize() .frame(width: 100, alignment: is ? .trailing : .leading) .animation(Animation.linear(duration: 5).repeatForever()) } 