main skeleton of app

This commit is contained in:
Andrew 2022-09-08 18:17:52 +07:00
commit 24f458b06f
36 changed files with 1783 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
part 'scoop_list_event.dart';
part 'scoop_list_state.dart';
class ScoopListBloc extends Bloc<ScoopListEvent, ScoopListState> {
ScoopListBloc() : super(ScoopListInitial()) {
on<ScoopListEvent>((event, emit) {});
}
}