A CLI tool to scaffold new Nylo Flutter projects.
dart pub global activate nylo_installernylo <command> [arguments]
Commands:
new <project_name> Create a new Nylo project
init Set up the Metro CLI alias
clean Run flutter clean and flutter pub get
Options:
-h, --help Show usage information
-v, --version Show version
Create a new Nylo project:
nylo new my_appThis will:
- Clone the Nylo template
- Configure your project name across all platform files (Android, iOS, pubspec.yaml, .env)
- Install Flutter dependencies
Project names are automatically converted to snake_case.
Set up the Metro CLI alias for an existing Nylo project:
nylo initThis configures the metro command in your shell so you can use it from anywhere within your project.
Clean your Flutter project and reinstall dependencies:
nylo cleanThis runs:
flutter clean- Removes build artifactsflutter pub get- Reinstalls dependencies
Once Metro is set up via nylo init, you can generate files for your Nylo project:
metro make:page HomePage
metro make:controller HomeController
metro make:model User- Dart SDK >= 3.0.0
- Flutter
- Git