这是我的 SwiftUI
码:
struct ContentView : View {
@State var showingTextField = false
@State var text = ""
var body: some View {
return VStack {
if showingTextField {
TextField($text)
}
Button(action: { self.showingTextField.toggle() }) {
Text ("Show")
}
}
}
}
我想要的是,当文本字段成为 看得见,使文本字段成为第一个响应者(即接收焦点和有键盘弹出)。