fix exchangenow payment request

This commit is contained in:
Serhii-Borodenko 2022-07-07 18:02:38 +03:00
parent 8321c9fbbe
commit fa2e9cd810

View file

@ -316,9 +316,10 @@ class ExchangeCardState extends State<ExchangeCard> {
if (amountController.text.isNotEmpty) { if (amountController.text.isNotEmpty) {
_showAmountPopup(context, paymentRequest); _showAmountPopup(context, paymentRequest);
} else { return;
amountController.text = paymentRequest.amount;
} }
widget.amountFocusNode.requestFocus();
amountController.text = paymentRequest.amount;
}, },
placeholder: widget.hasRefundAddress placeholder: widget.hasRefundAddress
? S.of(context).refund_address ? S.of(context).refund_address
@ -465,6 +466,7 @@ class ExchangeCardState extends State<ExchangeCard> {
rightButtonText: S.of(context).ok, rightButtonText: S.of(context).ok,
leftButtonText: S.of(context).cancel, leftButtonText: S.of(context).cancel,
actionRightButton: () { actionRightButton: () {
widget.amountFocusNode.requestFocus();
amountController.text = paymentRequest.amount; amountController.text = paymentRequest.amount;
Navigator.of(context).pop(); Navigator.of(context).pop();
}, },