fluframe 0.1.0
fluframe: ^0.1.0 copied to clipboard
Generate production-ready Flutter apps from the fluFrame boilerplate — Riverpod 3, go_router, localization, theming, dio, and tests wired out of the box.
example/example.md
fluframe in 60 seconds #
Install the CLI once:
dart pub global activate fluframe
Create a production-ready Flutter app:
fluframe create my_app \
--org com.mycompany \
--description "My shiny app"
Run it:
cd my_app
flutter run --dart-define-from-file=env/dev.json
You now have a feature-first Flutter app with Riverpod 3, go_router bottom tabs, freezed models, a dio REST sample, English + Korean localization, persisted dark mode, flavors, strict lints — and a test suite that is already green:
flutter analyze # 0 issues
flutter test # all green
Useful options #
fluframe create my_app -o projects/ # create inside a directory
fluframe create my_app --platforms android,ios,web
fluframe create my_app --no-pub # skip pub get / gen-l10n
fluframe --version