Component - MVVM pattern
The MVVM pattern helps organize app code by separating the user interface (View), the data and business logic (Model), and the connection between them (ViewModel). This makes apps easier to build and maintain.
The MVVM pattern helps organize app code by separating the user interface (View), the data and business logic (Model), and the connection between them (ViewModel). This makes apps easier to build and maintain.
ViewController
├── View (UI elements)
└── ViewModel
└── Model (Data)