Feat: Fügt die Liste für wiederkehrende Transaktionen hinzu

This commit is contained in:
2025-12-28 02:26:58 +01:00
parent 8d7f6bc4d3
commit 0c4c6d7c3d
14 changed files with 594 additions and 104 deletions

View File

@@ -27,7 +27,7 @@ class _AccountSelectState extends State<AccountSelect> {
_accountController.selected.addListener(() {
setState(() {
if (context.mounted) {
if (mounted) {
_selected = _accountController.selected.value;
}
});
@@ -35,7 +35,7 @@ class _AccountSelectState extends State<AccountSelect> {
_accountController.accounts.addListener(() {
setState(() {
if (context.mounted) {
if (mounted) {
_accounts = _accountController.accounts.value;
}
});