Reputation: 20975
The onSubmit is not called on Enter if the passwords system popover is presented
SecureField("Password", text: $password)
.textContentType(.password)
.textFieldStyle(FTextFieldStyle())
.focused($focusedField, equals: .password)
.onSubmit {
if canLogin() {
login()
} else {
focusedField = .username
}
}
Once the Passwords dialog is gone, the onSubmit works again on enter
How to get it always working
Upvotes: 0
Views: 122