sm_cli 1.0.2
sm_cli: ^1.0.2 copied to clipboard
A Flutter Clean Architecture CLI generator for scalable production apps. Supports Riverpod, Bloc, GetX, Provider — with GoRouter, Dio, themes, and feature-based clean structure.
example/example.dart
/// SM CLI usage example.
///
/// Install:
/// ```bash
/// dart pub global activate sm_cli
/// ```
///
/// Create a new Flutter project:
/// ```bash
/// sm init my_app
/// ```
///
/// Generate a feature:
/// ```bash
/// sm make feature my_app auth
/// ```
///
/// Generate API layer:
/// ```bash
/// sm make api my_app
/// ```
void main() {
// SM CLI is a command-line tool.
// Run it from terminal, not as a Dart program.
// See README for full usage.
}