mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
Cw 1018 minor UI enhancements (#2118)
* fix ui for monero batch sending
* minor ui fixes
* Revert "fix ui for monero batch sending"
This reverts commit 4827b17bfe
.
* fix: focus node issue
This commit is contained in:
parent
3ec7d01c30
commit
be81042a06
4 changed files with 60 additions and 50 deletions
|
@ -397,7 +397,10 @@ class SendPage extends BasePage {
|
|||
return LoadingPrimaryButton(
|
||||
key: ValueKey('send_page_send_button_key'),
|
||||
onPressed: () async {
|
||||
FocusManager.instance.primaryFocus?.unfocus();
|
||||
|
||||
//Request dummy node to get the focus out of the text fields
|
||||
FocusScope.of(context).requestFocus(FocusNode());
|
||||
|
||||
if (sendViewModel.state is IsExecutingState) return;
|
||||
if (_formKey.currentState != null &&
|
||||
!_formKey.currentState!.validate()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue