clarc_arch_cli 0.1.3
clarc_arch_cli: ^0.1.3 copied to clipboard
A CLI for scaffolding Flutter Clean Architecture projects, modules, and pages.
clarc example #
Run the interactive project wizard:
clarc create project
Create a module inside an existing Flutter project:
clarc create module auth --project-dir ./my_app
Create a page and register its route:
clarc create page auth login --project-dir ./my_app
Use FVM or Puro explicitly when needed:
clarc create project my_app --flutter-cmd "fvm flutter"
clarc create project my_app --flutter-cmd "puro flutter"
Generate into a new folder to see the latest templates:
clarc create project my_theme_test
When regenerating an existing test project, use --force only if you want to overwrite generated files:
clarc create project my_theme_test --force