srik_cli 0.2.2
srik_cli: ^0.2.2 copied to clipboard
Flutter project scaffolder. Choose architecture (Clean, MVVM, Feature-first, Simple), design preset, gradients, and spacing. Generate projects and add features.
example/README.md
Example #
This folder demonstrates what srik create generates.
Generate a new project #
# Install globally
dart pub global activate srik_cli
# Create a new Flutter project
srik create my_app
# Or with options
srik create my_app \
--org=com.acme \
--brand=#FF5733 \
--description="A fitness tracker"
What you get #
A complete Flutter project at ./my_app/ with:
- Clean Architecture folder layout
- Riverpod state management
- go_router for navigation
- Dio HTTP client
- shared_preferences local storage
- Design tokens generated from your brand color
- A working
homefeature demonstrating the full data flow
Run it:
cd my_app
flutter run
That's it.