mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-24 20:39:21 +00:00
textfields clear on send
This commit is contained in:
parent
bd0b01efcd
commit
2936249bd6
1 changed files with 7 additions and 0 deletions
|
@ -248,6 +248,13 @@ class _DesktopSendState extends ConsumerState<DesktopSend> {
|
||||||
label: "Yes",
|
label: "Yes",
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
Navigator.of(context).pop(true);
|
Navigator.of(context).pop(true);
|
||||||
|
|
||||||
|
setState(() {
|
||||||
|
sendToController.text = "";
|
||||||
|
cryptoAmountController.text = "";
|
||||||
|
baseAmountController.text = "";
|
||||||
|
noteController.text = "";
|
||||||
|
});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue