Skip to content

Instantly share code, notes, and snippets.

@piyush23dez
Last active December 19, 2019 08:19
Show Gist options
  • Save piyush23dez/3f79f4fd281446517ad10e13ec54824e to your computer and use it in GitHub Desktop.
Save piyush23dez/3f79f4fd281446517ad10e13ec54824e to your computer and use it in GitHub Desktop.
struct ContentView: View {
@State private var name = ""
var body: some View {
Form {
TextField("Enter your name", text: $name)
Text("Your name is \(name)")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment