clean architecture sample project
flutter template project to explore the clean architecture
and manage the flutter project to make scalable with a modularization
approach.
getting started
this project is a starting point for a flutter application.
- use
th_core
packages to implement bloc architecture [https://github.com/tuanhwing/th_core]. - dividing a project into different modules (
modularization
)
what is modularization
modular programming is a software design technique to separate functionality into independent, interchangeable module, so that each contains everything necessary to execute a specific functionality.
why we should care about modular approach?
for example, on the left, we can only split the work for two developers or more. but on the right side, we can split the work for five developers or more, and also this is very suitable for a large team because we split the project as a module. so the developer can focus on their module.
Comments are closed.