Same issue with all preview devices. Running on macOS 10.15.5.
Is there an option I am missing or a workaround for this?
Code Block import SwiftUI struct ContentView: View { @State private var text = "" var body: some View { Form { TextField("Write something", text: $text) } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }