Can SwiftUI Text Fields work with optional Bindings? Currently this code:
struct SOTestView : View { @State var test: String? = \"Test\" var body: s
You can try
struct SOTestView : View { @State var test: String? = "Test" var body: some View { test.map { TextField($0) } } }