Improved layout, fixed transaction popup

This commit is contained in:
2024-02-11 17:28:21 +01:00
parent 44f6d433d1
commit cbaf94d866
21 changed files with 378 additions and 204 deletions

View File

@@ -1,12 +1,18 @@
part of 'account_bloc.dart';
final class AccountState extends Equatable {
const AccountState();
final Set<String> subAccounts;
AccountState copyWith() {
return const AccountState();
const AccountState({
this.subAccounts = const {},
});
AccountState copyWith(Set<String>? subAccounts) {
return AccountState(
subAccounts: subAccounts ?? this.subAccounts,
);
}
@override
List<Object?> get props => [];
List<Object?> get props => [subAccounts];
}