Hi engineers, Is there a straightforward guide to ...
# compose
d
Hi engineers, Is there a straightforward guide to modularizing an existing Jetpack Compose project, or is it generally more effective to start from an already modularized template and adapt its structure, files, and dependencies to fit the current project?
g
There is no real difference in terms of modularisation for compose, though we found that the most efficient and clean approach, is to have pure
ui
modules only with composable and states, which used by business logic, it allows to reuse, recompilation is way faster (and as result even preview work very well)