Fixed issue with wallet form feild and made page selecor in dashboard into a router
This commit is contained in:
@@ -49,7 +49,8 @@ class _WalletFormState extends State<WalletForm> {
|
||||
return;
|
||||
}
|
||||
|
||||
if (newData != null && newData != oldData) {
|
||||
if (newData != null &&
|
||||
newData.walletId != _walletIdController.text) {
|
||||
_walletIdController.text = newData.walletId;
|
||||
}
|
||||
}
|
||||
@@ -67,4 +68,4 @@ class _WalletFormState extends State<WalletForm> {
|
||||
validator: (val) => (val?.isEmpty ?? true) ? l10n.enterWalletId : null,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user