mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-10 21:04:53 +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,
|
text: S.of(context).save,
|
||||||
color: Theme.of(context).accentTextTheme.body2.color,
|
color: Theme.of(context).accentTextTheme.body2.color,
|
||||||
textColor: Colors.white,
|
textColor: Colors.white,
|
||||||
isDisabled: !nodeCreateOrEditViewModel.isReady,
|
isDisabled: (!nodeCreateOrEditViewModel.isReady)||
|
||||||
|
(nodeCreateOrEditViewModel
|
||||||
|
.connectionState is IsConnectingState),
|
||||||
),
|
),
|
||||||
)),
|
)),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue