Feat: Fügt die Liste für wiederkehrende Transaktionen hinzu
This commit is contained in:
@@ -26,7 +26,7 @@ class _AccountListState extends State<AccountList> {
|
||||
|
||||
_accountController.accounts.addListener(() {
|
||||
setState(() {
|
||||
if (context.mounted) {
|
||||
if (mounted) {
|
||||
_accounts = _accountController.accounts.value;
|
||||
}
|
||||
});
|
||||
@@ -45,7 +45,7 @@ class _AccountListState extends State<AccountList> {
|
||||
name: 'Konten',
|
||||
items: formatedAccounts,
|
||||
onAdd: _accountController.newAccountHandler,
|
||||
onRename: _accountController.renameAccountHandler,
|
||||
onEdit: _accountController.renameAccountHandler,
|
||||
onDelete: _accountController.deleteAccountHandler,
|
||||
icon: const Icon(Icons.account_balance_wallet),
|
||||
addTooltip: 'Konto hinzufügen',
|
||||
|
||||
Reference in New Issue
Block a user