Disable autocomplete for username

Closes #81

Changelog-Fixed: Disable autocorrection for username when creating account
This commit is contained in:
Darrell
2022-12-21 16:15:53 +09:00
committed by William Casarin
parent bd58054434
commit 5dedb7c29d

View File

@@ -47,6 +47,7 @@ struct CreateAccountView: View {
.padding(.leading, -25.0)
FormTextInput("satoshi", text: $account.nick_name)
.autocorrectionDisabled(true)
.textInputAutocapitalization(.never)
}