mirror of
https://github.com/yattee/yattee.git
synced 2025-08-09 20:24:06 +00:00
Fix username keyboard input
This commit is contained in:
@@ -81,6 +81,10 @@ struct AccountForm: View {
|
|||||||
|
|
||||||
@ViewBuilder var formFields: some View {
|
@ViewBuilder var formFields: some View {
|
||||||
TextField("Username", text: $username)
|
TextField("Username", text: $username)
|
||||||
|
#if !os(macOS)
|
||||||
|
.autocapitalization(.none)
|
||||||
|
#endif
|
||||||
|
.disableAutocorrection(true)
|
||||||
SecureField("Password", text: $password)
|
SecureField("Password", text: $password)
|
||||||
|
|
||||||
#if os(tvOS)
|
#if os(tvOS)
|
||||||
|
Reference in New Issue
Block a user