budget mockup, account settings & transactions filter

This commit is contained in:
2024-02-18 00:08:17 +01:00
parent b2da8436e4
commit 44279796c4
18 changed files with 367 additions and 32 deletions

View File

@@ -24,6 +24,10 @@ class MetadataRepository {
return _budgetController.asBroadcastStream();
}
List<Account> getAccounts() {
return _accountController.value;
}
Stream<List<Account>> getAccountsStream() {
return _accountController.asBroadcastStream();
}