1.

Explain Mvvm Pattern?

Answer»

MVVM pattern divides the UI code into 3 basic parts:

  • Model – It represents a SET of CLASSES, which contain data received from databases.
  • View – It is the code that agrees with the visual representation of the data.
  • VIEWMODEL – It is the layer that binds View and Model TOGETHER. It presents this data in a manner, which is easy to understand. It also controls how View interacts with the application.

MVVM pattern divides the UI code into 3 basic parts:



Discussion

No Comment Found