Countdown Time Bloc Pattern, State, UI
- assets
- icons: start with ic_
- images: start with image_
- lib
- data
- blocs: Bloc on this applocation
- datasources: Data provider
- models: Model Data, suffix: _model
- repositories: list of repository
- gen: Gen Assets Management
- pages: Screen, Page of Application, suffix: _page
- utils
- widgets: Component reuse on this app, suffix: _widget
- application.dart: MaterialApp of this app
- main.dart
- data
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;
}
This project is config CI/CD with Github Action and build release only for Android.
Work flow:
.github/workflows/dart.yml