Flutter Clean Architecture GeneratorOverviewThe Flutter Clean Architecture Generator is a Visual Studio Code extension that automates the creation of folder and file structures based on the Clean Architecture principles for Flutter projects. This tool aims to speed up the initial setup process by generating the essential layers and structure needed for a scalable and maintainable Flutter application. Features
Generated StructureWhen using this extension, the following structure is generated: ├── lib/ │ ├── src/ │ | ├──core/ │ | ├── error/ │ │ └── failures.dart │ ├── usecases/ │ │ └── usecase.dart │ └── utils/ ├── features/ │ └── feature_name/ │ ├── data/ │ │ ├── datasources/ │ │ ├── models/ │ │ └── repositories/ │ ├── domain/ │ │ ├── entities/ │ │ ├── repositories/ │ │ └── usecases/ │ └── presentation/ │ ├── bloc/ │ ├── pages/ │ └── widgets/ └── main.dart Core
Features
How to Use
CustomizationYou can customize the generated structure by editing the template files provided within the extension settings. This allows you to tailor the architecture to your specific needs or preferences. ContributingContributions are welcome! Feel free to open issues or submit pull requests to improve the extension. ContactFor any issues, suggestions, or contributions, please contact Arif Iskandar. |