mirror of
https://github.com/yattee/yattee.git
synced 2025-04-28 07:50:33 +05:30
Fix username keyboard input
This commit is contained in:
parent
85cb42fc8d
commit
0822c7b93a
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user