orkitt_cli 1.0.0
orkitt_cli: ^1.0.0 copied to clipboard
A powerful Flutter CLI tool to scaffold Orkitt-style Flutter apps with pre-configured folder structure, packages, and bootstrap files.

orkitt_cli #
A powerful Flutter CLI tool to scaffold Orkitt-style Flutter apps with pre-configured folder structure, essential packages, and bootstrap files.
Installation #
Activate globally via Dart:
dart pub global activate orkitt_cli
Usage #
Create a new Flutter app with Orkitt CLI:
orkitt create "MyApp"
This will:
- Create a Flutter app named
MyAppwith--org dev.orkitt - Install core packages
- Generate the full folder and file structure
- Initialize Git
Folder Structure Example #
lib/
└── src/
├── core/colors/app_color.dart
├── core/constants/app_constants.dart
├── core/theme/theme.dart
├── data/models/
├── data/repositories/
├── features/auth/login_page.dart
├── features/auth/signup_page.dart
├── features/splash/splash_page.dart
├── features/onboarding/onboarding_page.dart
├── l10n/messages.dart
├── providers/providers.dart
├── routes/app_routes.dart
├── services/example_service.dart
├── shared/widgets/example_widget.dart
├── shared/utils/example_utils.dart
├── app.dart
└── bootstrap.dart
Contributing #
- Fork the repository
- Create a new branch (
git checkout -b feature/my-feature) - Make your changes
- Commit (
git commit -am 'Add new feature') - Push (
git push origin feature/my-feature) - Create a pull request
License #
MIT License © Orkitt Technology