mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
fix exchangenow payment request
This commit is contained in:
parent
8321c9fbbe
commit
fa2e9cd810
1 changed files with 4 additions and 2 deletions
|
@ -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();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue