ccci_run 1.0.0
ccci_run: ^1.0.0 copied to clipboard
This project sets up a basic folder structure and creates default files for a Flutter application. The structure aims to provide a clear organization for project components, making it easier to manage [...]
CCCI RUN #
This project sets up a basic folder structure and creates default files for a Flutter application. The structure aims to provide a clear organization for project components, making it easier to manage and scale the application.
USAGE:
dart run ccci_run
Folder Structure #
The following folders are created within the lib directory:
lib/commons: Common utility functions and classes.lib/constants: Application-wide constants.lib/core/models: Data models.lib/core/services/api: API-related services.lib/core/services/providers: Providers for state management.lib/core/services/repositories: Data repositories.lib/core/local_storage: Local storage utilities.lib/modules: Modules for different features of the application.
Default Files #
The following default files are created with some initial content:
lib/constants/app_version.dart #
const String APP_VERSION = '0.0.1';