flutter_architect_cli 1.0.7
flutter_architect_cli: ^1.0.7 copied to clipboard
A CLI tool to scaffold Flutter projects with multiple architecture patterns (Clean Architecture, MVC, MVVM, MVP)
Changelog #
1.0.7 #
- [NEW] Added complete MVC Pattern scaffolding with models, views, controllers, and services
- [NEW] Added complete MVVM Pattern scaffolding with view models, repositories, and dependency injection
- [NEW] Added complete MVP Pattern scaffolding with presenters, view interfaces, and repositories
- [IMPROVED] Enhanced interactive architecture selection menu with better UX
- [IMPROVED] Expanded core utilities and helper functions across all patterns
- [IMPROVED] Added comprehensive example implementations for each pattern
- [IMPROVED] Better error handling and validation in generated code
- [DOCS] Complete documentation for all four architecture
1.0.6 #
- Enhance documentation for architecture patterns and example application
1.0.5 #
- Added interactive architecture pattern selection (Clean/MVC/MVVM/MVP)
- Default scaffolding creates Clean Architecture; others show "Coming Soon"
- Removed
presentation/blocfrom generated structure - Added
lib/core/utils/logger.dartandlib/core/utils/validators.dart - Updated README and help texts
1.0.4 #
- Added proper Flutter example project
- Fixed example detection for pub.dev
1.0.3 #
- Added comprehensive API documentation
- Fixed all pub.dev analysis issues
1.0.2 #
- Fixed repository URLs in pubspec.yaml
- Improved documentation comments
- Updated analysis options
1.0.1 #
- Fixed pubspec.yaml repository links
- Added proper issue tracker URL
1.0.0 #
- Initial release of Flutter Architect CLI
- Project scaffolding with Clean Architecture
- Feature-first organization structure
- Pre-configured dependency injection with GetIt
- BLoC state management setup
- Example auth feature implementation