Skip to content

Instantly share code, notes, and snippets.

@blsage
Created October 19, 2020 22:37
Show Gist options
  • Save blsage/8e5171152b43329b615df29293ef2b01 to your computer and use it in GitHub Desktop.
Save blsage/8e5171152b43329b615df29293ef2b01 to your computer and use it in GitHub Desktop.
iTextField modifier example
iTextField("Placeholder", text: $text, isEditing: $isEditing)
.accentColor(.purple)
.fontFromUIFont(UIFont(name: "Avenir", size: 40))
.keyboardType(.URL)
.returnKeyType(.done)
.disableAutocorrection(true)
.autocapitalization(.none)
.padding()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment