Skip to content
Snippets Groups Projects
Commit 7824f17d authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Improve text input on RegisterView

parent 9f5a54ad
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!65Messenger example - user search
...@@ -37,6 +37,8 @@ public struct RegisterView: View { ...@@ -37,6 +37,8 @@ public struct RegisterView: View {
label: { Text("Username") } label: { Text("Username") }
) )
.focused($focusedField, equals: .username) .focused($focusedField, equals: .username)
.textInputAutocapitalization(.never)
.disableAutocorrection(true)
} header: { } header: {
Text("Username") Text("Username")
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment