feat: Implement group balance and expense management with new navigation and data handling

This commit is contained in:
Dayron
2025-10-28 13:06:42 +01:00
parent 94f1abfbc7
commit df1bb6da4a
10 changed files with 390 additions and 54 deletions

View File

@@ -7,13 +7,13 @@ abstract class BalanceEvent extends Equatable {
List<Object?> get props => [];
}
class LoadGroupBalance extends BalanceEvent {
class LoadGroupBalances extends BalanceEvent {
final String groupId;
const LoadGroupBalance(this.groupId);
const LoadGroupBalances(this.groupId);
@override
List<Object?> get props => [groupId];
List<Object> get props => [groupId];
}
class RefreshBalance extends BalanceEvent {