clean_fold 0.0.1
clean_fold: ^0.0.1 copied to clipboard
Flutter CLI to scaffold clean architecture features with BLoC, domain, infrastructure & presentation layers.
lib/
└── src/
└── features/
└── user_profile/
├── application/
│ └── user_profile_bloc/
│ ├── user_profile_bloc.dart
│ ├── user_profile_event.dart
│ └── user_profile_state.dart
├── domain/
│ └── i_user_profile_repository.dart
├── infrastructure/
│ └── user_profile_repository.dart
└── presentation/
├── screens/
└── widgets/