flutter_architect 1.0.0
flutter_architect: ^1.0.0 copied to clipboard
A CLI to scaffold production-ready Clean Architecture Flutter projects.
1.0.0 #
🎉 Initial Release #
The first production-ready release of flutter_architect — a CLI tool to instantly scaffold production-ready Flutter projects.
Features
- Interactive
initcommand — Guided setup wizard to configure your entire project in seconds. - Dual Architecture Support:
- Clean Architecture — Full
data,domain, andpresentationlayer scaffolding (Uncle Bob / Reso Coder style). - MVVM — Feature-first
models,viewmodels, andviewsscaffolding.
- Clean Architecture — Full
- State Management: BLoC, Riverpod, Provider, GetX, or None.
- Routing: GoRouter, AutoRoute, Navigator 2.0, or Vanilla.
- Networking: REST (Dio), GraphQL, or Both.
- Dependency Injection: GetIt service locator setup.
create feature— Scaffold a full feature module in one command.create model— Generate a Data Model withfromJson,toJson,copyWith.create entity— Generate a Domain Entity extendingEquatable.create repository— Generate abstract + implementation Repository pair.create usecase— Generate a UseCase with the Callable Class pattern.create viewmodel— Generate a ViewModel + View pair (MVVM only).- Guard validation — Prevents running
createcommands beforeinit. - Smart dependency list — Prints the exact
flutter pub addcommand based on your choices. --dry-runflag — Preview folder structure without writing to disk.