MVVM, means Model-View-View-Model, it's the most popular design pattern for android apps.
Why MVVM?
- your code is decoupled and easy to maintain- code is testable very easily
- other people understand the structure much faster
- data is not reloaded at device rotation
MVVM Structure :
0 Comments