Fixed that focusNextTextFieldOnReturnKeyPress got removed
This commit is contained in:
parent
f05a551bf1
commit
d2987dfb35
|
@ -37,7 +37,9 @@ struct AddAccountDialog: View {
|
|||
}
|
||||
|
||||
Section {
|
||||
LabelledUIKitTextField(label: "Online banking login name", text: $customerId, placeholder: "Enter Online banking login name", actionOnReturnKeyPress: handleReturnKeyPress)
|
||||
LabelledUIKitTextField(label: "Online banking login name", text: $customerId, placeholder: "Enter Online banking login name",
|
||||
|
||||
focusNextTextFieldOnReturnKeyPress: true, actionOnReturnKeyPress: handleReturnKeyPress)
|
||||
|
||||
LabelledUIKitTextField(label: "Online banking login password", text: $password, placeholder: "Enter Online banking login password",
|
||||
isPasswordField: true, actionOnReturnKeyPress: handleReturnKeyPress)
|
||||
|
|
Loading…
Reference in New Issue