mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
CAKE-169 | made Save button disabled during testing connection to node (node_create_or_edit_page.dart)
This commit is contained in:
parent
88477751c6
commit
83fea0e9d3
1 changed files with 3 additions and 1 deletions
|
@ -171,7 +171,9 @@ class NodeCreateOrEditPage extends BasePage {
|
|||
text: S.of(context).save,
|
||||
color: Theme.of(context).accentTextTheme.body2.color,
|
||||
textColor: Colors.white,
|
||||
isDisabled: !nodeCreateOrEditViewModel.isReady,
|
||||
isDisabled: (!nodeCreateOrEditViewModel.isReady)||
|
||||
(nodeCreateOrEditViewModel
|
||||
.connectionState is IsConnectingState),
|
||||
),
|
||||
)),
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue