Fixed issue with wallet form feild and made page selecor in dashboard into a router

This commit is contained in:
Arseni
2025-11-27 18:07:28 +03:00
parent 44446c6ad4
commit 9c16e27645
7 changed files with 280 additions and 118 deletions

View File

@@ -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,
);
}
}
}