Skip to content

Instantly share code, notes, and snippets.

@d-srd
Created September 20, 2019 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d-srd/57029c36954b335b856be506b297f679 to your computer and use it in GitHub Desktop.
Save d-srd/57029c36954b335b856be506b297f679 to your computer and use it in GitHub Desktop.
struct UsernameInputView: View {
@Binding var username: String
var body: some View {
TextField(username, text: $username)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment