Skip to content

Instantly share code, notes, and snippets.

@alyssoncm
Created September 23, 2019 20:48
Show Gist options
  • Save alyssoncm/1418ea0cebe592c3f73596fddb9f1ee2 to your computer and use it in GitHub Desktop.
Save alyssoncm/1418ea0cebe592c3f73596fddb9f1ee2 to your computer and use it in GitHub Desktop.
strut3
struct SignUpView: View {
@State var username: String = ""
@State var password: String = ""
@State var email: String = ""
var body: some View {
VStack{
Text("Sign Up")
TextField("Username", text: $username)
SecureField("Password", text: $password)
TextField("Email (optional)", text: $email)
Button(action: {
}){
Text("Sign Up!")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment