Created
October 19, 2020 22:37
-
-
Save blsage/8e5171152b43329b615df29293ef2b01 to your computer and use it in GitHub Desktop.
iTextField modifier example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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