- assets
- icons: start with ic_
- images: start with image_
- lib
- data
- blocs: Bloc on this applocation
- datasources: Data provider
- dto: Model Data, suffix: _dto
- repositories: list of repository
- gen: Gen Assets Management
- domain
- model: Model in domain layer, suffix: _model
- repository: repository in domain layer
- pages: Screen, Page of Application, suffix: _page
- utils
- widgets: Component reuse on this app, suffix: _widget
- application.dart: MaterialApp of this app
- initialize_dependencies.dart: init dependencies global as local service, bloc, domain repository
- main.dart
- data
Init all dependencies global on initialize_dependencies.dart
example: LocalService
, Repository_
of domain layer.
https://pub.dev/packages/flutter_gen
Works with MacOS and Linux.
$ brew install FlutterGen/tap/fluttergen
Works with MacOS, Linux and Windows.
$ dart pub global activate flutter_gen
$ flutter pub run build_runner build
path: lib/utils/extensions.dart
extension StateExtensions on State {
ThemeData get theme => Theme.of(context);
TextTheme get textTheme => Theme.of(context).textTheme;
TextTheme get primaryTextTheme => Theme.of(context).primaryTextTheme;
TextTheme get accentTextTheme => Theme.of(context).accentTextTheme;
ColorScheme get colorScheme => Theme.of(context).colorScheme;
MediaQueryData get mediaQueryData => MediaQuery.of(context);
Size get size => MediaQuery.of(context).size;
}
extension ContextExtensions on BuildContext {
ThemeData get theme => Theme.of(this);
TextTheme get textTheme => Theme.of(this).textTheme;
TextTheme get primaryTextTheme => Theme.of(this).primaryTextTheme;
TextTheme get accentTextTheme => Theme.of(this).accentTextTheme;
ColorScheme get colorScheme => Theme.of(this).colorScheme;
MediaQueryData get mediaQueryData => MediaQuery.of(this);
Size get size => MediaQuery.of(this).size;
}
1, Edit path of folder need gen quick import
# Change Folder At Here
genQuickImport lib/domain
2,
run shell gen_quick_import.sh
bash gen_quick_import.sh
bash gen.sh
This project is config CI/CD with Github Action and build release only for Android.
Work flow:
.github/workflows/dart.yml