Since iOS14 I have found that all my TextField
s are moving up automatically once the keyboard appears.
I haven't found a way to stop this, have I missed something?
Here is a simple Demo+Code:
Demo:

Code:
import SwiftUI
struct ContentView: View {
@State private var textInput: String = ""
var body: some View {
TextField("Test", text: $textInput)
}
}