stacked bar graph, edit / remove transaction & budget page base
This commit is contained in:
10
lib/domains/budget/budget_bloc.dart
Normal file
10
lib/domains/budget/budget_bloc.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
import 'package:flutter_bloc/flutter_bloc.dart';
|
||||
|
||||
part 'budget_event.dart';
|
||||
part 'budget_state.dart';
|
||||
|
||||
class BudgetBloc extends Bloc<BudgetEvent, BudgetState> {
|
||||
BudgetBloc(super.initialState);
|
||||
|
||||
}
|
||||
8
lib/domains/budget/budget_event.dart
Normal file
8
lib/domains/budget/budget_event.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
part of 'budget_bloc.dart';
|
||||
|
||||
sealed class BudgetEvent extends Equatable {
|
||||
const BudgetEvent();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
6
lib/domains/budget/budget_state.dart
Normal file
6
lib/domains/budget/budget_state.dart
Normal file
@@ -0,0 +1,6 @@
|
||||
part of 'budget_bloc.dart';
|
||||
|
||||
final class BudgetState extends Equatable {
|
||||
@override
|
||||
List<Object?> get props => [];
|
||||
}
|
||||
Reference in New Issue
Block a user