Hi, I have a question, If I want to use a composab...
# android
p
Hi, I have a question, If I want to use a composable screen from some other feature module. What would be the best approach
a
1. Use generic composable widget as possible, so it reduce dependency concern of each features module. 2. Keep on the rule of SOLID principle. It'll pay you later Depend on context and how your system design looks. Different answer will appear