> Swift
WWDC 2019SwiftUIβSwiftUIβ`TextField`
SwiftUI
struct ContentView: View {
@State var text: String = ""
var body: some View {
HStack {
//# PlaceholdertextBinding
TextField("type something here...", text: $text)
Button(action: {
// Closure will be called once user taps your button
print(self.$text)
}) {
Text("SEND")
}
}
}
}