Seed app with clean code architecture
In clean code architecture, there are three main layers
- Data
- Domain
- Presentation along with
- common (can also be called as core)
This contains all the common functionalities for the application. e.g http client, env config, platform specific stuffs like network checker, etc.
These common functionalities will be used by data layer, domain layer and presentation layer e.g http client by remote data source, network info by repository layer, enums by domain layer and config by presentation.
This is innermost layer and will contain the core business logic i.e. usecases and business object also called as entities, the usecase depends on the contract of repository (not implementation)
The data layers contains the repository implementation and this layer is closest to actual data sources and is responsible for communication with data sources.
The data layer returns the models and not entities and the model also contains the fromJson and toJson mapper.
Note: We don’t have an extra mapper class, we are just going to leverage the named constructor by dart to map our data set from one form to our models. toJson and fromJson.
This layer contains all the information about the UI and everything to show to the end user customer. The presentation layer also contains the bloc which is the state management and often termed as brain of UI.
The presentation layer interact via domain layer, i.e entities and use cases.
├── lib
│ ├── common
│ │ ├── configs
│ │ │ └── configuration.dart
│ │ ├── constants
│ │ │ ├── exception_constants.dart
│ │ │ ├── http_constants.dart
│ │ │ ├── local_database_type_constants.dart
│ │ │ └── route_constants.dart
│ │ ├── exceptions
│ │ │ ├── bad_request_exception.dart
│ │ │ ├── forbidden_exception.dart
│ │ │ ├── server_error_exception.dart
│ │ │ ├── server_exception.dart
│ │ │ └── unauthorized_exception.dart
│ │ ├── extensions
│ │ │ └── string_extension.dart
│ │ ├── http
│ │ │ └── http_client.dart
│ │ ├── injector
│ │ │ ├── injector.dart
│ │ │ ├── injector_config.dart
│ │ │ └── injector_config.g.dart
│ │ └── utils
│ │ ├── database_util.dart
│ │ └── http_utils.dart
│ ├── data
│ │ ├── datasources
│ │ │ ├── local
│ │ │ │ ├── local_database
│ │ │ │ │ ├── base_local_database.dart
│ │ │ │ │ ├── tables
│ │ │ │ │ │ ├── todo_table.dart
│ │ │ │ │ │ └── todo_table.g.dart
│ │ │ │ │ └── todo_local_datasource.dart
│ │ │ │ └── shared_preference
│ │ │ └── remote
│ │ │ ├── constants
│ │ │ │ └── todo_remote_datasource_constants.dart
│ │ │ └── todo_remote_datasource.dart
│ │ ├── models
│ │ │ └── todo_model.dart
│ │ └── repositories
│ │ └── todo_repository_impl.dart
│ ├── domain
│ │ ├── entities
│ │ │ └── todo_entity.dart
│ │ ├── repositories
│ │ │ └── todo_repository.dart
│ │ └── usescases
│ │ └── todo_usecase.dart
│ ├── main.dart
│ └── presentation
│ ├── app.dart
│ ├── common_bloc
│ ├── journey
│ │ ├── dashboard
│ │ │ ├── dashboard_constants.dart
│ │ │ ├── dashboard_routes.dart
│ │ │ └── dashboard_screen.dart
│ │ └── todo
│ │ ├── bloc
│ │ │ ├── todo_bloc.dart
│ │ │ ├── todo_event.dart
│ │ │ └── todo_state.dart
│ │ ├── create_todo
│ │ │ ├── create_todo_constants.dart
│ │ │ └── create_todo_screen.dart
│ │ ├── todo_list
│ │ │ ├── todo_list_screen.dart
│ │ │ └── widgets
│ │ │ ├── todo_item.dart
│ │ │ └── todo_list_constants.dart
│ │ └── todo_routes.dart
│ ├── routes.dart
│ ├── themes
│ │ ├── custom_icons.dart
│ │ ├── theme_colors.dart
│ │ ├── theme_data.dart
│ │ └── theme_text.dart
│ └── widgets
├── pubspec.lock
├── pubspec.yaml
└── test
├── __setup__
│ ├── base_test_bloc.dart
│ ├── navigation_mock.dart
│ ├── path_provider_mock.dart
│ └── wrapper.dart
├── common
│ ├── exceptions
│ │ ├── bad_request_exception_test.dart
│ │ ├── forbidden_exception_test.dart
│ │ ├── server_error_exception_test.dart
│ │ └── unauthorized_exception_test.dart
│ ├── http
│ │ ├── __mock__
│ │ │ ├── http_client_data.dart
│ │ │ └── http_client_mock.dart
│ │ └── http_client_test.dart
│ └── utils
│ ├── __mock__
│ │ ├── sample_adapter.dart
│ │ ├── sample_table.dart
│ │ └── sample_table_mock.dart
│ ├── database_utils_test.dart
│ └── http_util_test.dart
├── data
│ ├── datasources
│ │ ├── local
│ │ │ ├── __mock__
│ │ │ │ ├── base_local_datasource_mock.dart
│ │ │ │ ├── sample_model.dart
│ │ │ │ ├── todo_local_datasource_mock.dart
│ │ │ │ └── todo_table_data.dart
│ │ │ ├── base_local_datasource_test.dart
│ │ │ └── todo_local_datasource_test.dart
│ │ └── remote
│ │ ├── __mock__
│ │ │ ├── http_client_mock.dart
│ │ │ └── todo_remote_datasource_mock.dart
│ │ └── todo_remote_datasource_test.dart
│ ├── models
│ │ ├── __mock__
│ │ │ └── todo_model_data.dart
│ │ └── todo_model_test.dart
│ └── repositories
│ ├── __mock__
│ │ ├── todo_json_data.dart
│ │ └── todo_repository_mock.dart
│ └── todo_repository_impl_test.dart
├── domain
│ ├── entities
│ │ └── __mock__
│ │ └── todo_entity_data.dart
│ └── usecases
│ ├── __mock__
│ │ └── todo_usecase_mock.dart
│ └── todo_usecase_test.dart
├── local_database_test_files
│ ├── database_util_test.hive
│ ├── database_util_test.lock
│ ├── testbox.hive
│ ├── testbox.lock
│ ├── todo.hive
│ └── todo.lock
└── presentation
├── app_test.dart
└── journey
├── dashboard
│ └── dashboard_screen_test.dart
└── todo
├── bloc
│ ├── __mock__
│ │ └── todo_bloc_mock.dart
│ └── todo_bloc_test.dart
├── create_todo
│ └── create_todo_screen_test.dart
├── todo_list
│ ├── todo_list_screen_test.dart
│ └── widgets
│ └── todo_item_test.dart
└── todo_routes_test.dart
flutter run
In case of addition to injector file,
run flutter pub run build_runner build --delete-conflicting-outputs
flutter test --coverage
To see percentage
lcov -r coverage/lcov.info "*/__test*__/*" "*.g.dart" -o coverage/lcov_cleaned.info
To see coverage of each file in html view
genhtml coverage/lcov_cleaned.info -o coverage