Same for me with SwiftUI.
I tried it with a small example project because I first thought, I had broken something but this was enough to reproduce the behaviour:
struct ContentView: View {
@State var testString: String = ""
var body: some View {
TextField("Test", text: $testString)
.frame(width: 200, height: 20, alignment: .center)
}
}