Not focusing recipient name text field on start anymore, just displays 'Please enter recipient name' error message on iOS 14

This commit is contained in:
dankito 2020-10-05 01:45:59 +02:00
parent de46d60416
commit c2a9f9f44a
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ struct TransferMoneyDialog: View {
} }
Section { Section {
LabelledUIKitTextField(label: "Recipient Name", text: $recipientName, focusOnStart: true, focusNextTextFieldOnReturnKeyPress: true, LabelledUIKitTextField(label: "Recipient Name", text: $recipientName, focusNextTextFieldOnReturnKeyPress: true,
isFocusedChanged: recipientNameIsFocusedChanged, textChanged: enteredRecipientNameChanged) isFocusedChanged: recipientNameIsFocusedChanged, textChanged: enteredRecipientNameChanged)
.padding(.bottom, 0) .padding(.bottom, 0)