Replaced UIKitTextField by LabelledUIKitTextField
This commit is contained in:
parent
fba3c68ef2
commit
ec65600153
|
@ -105,7 +105,7 @@ struct EnterTanDialog: View {
|
|||
.padding(.vertical, 2)
|
||||
|
||||
Section {
|
||||
UIKitTextField("Enter TAN:", text: $enteredTan, keyboardType: tanChallenge.tanProcedure.isNumericTan ? .numberPad : .default, actionOnReturnKeyPress: {
|
||||
LabelledUIKitTextField(label: "Enter TAN:", text: $enteredTan, keyboardType: tanChallenge.tanProcedure.isNumericTan ? .numberPad : .default, actionOnReturnKeyPress: {
|
||||
if self.isRequiredDataEntered() {
|
||||
self.enteringTanDone()
|
||||
return true
|
||||
|
|
Loading…
Reference in New Issue