UI Arch

MVVM

Description

Model-View-ViewModel. Facilitates a separation of development of the graphical user interface.

Where to use

  • Modern Frontend Frameworks.
  • \n
  • Mobile Development.

Real World Example

React (View) + State (ViewModel).

Code Example

class MVVM:\n    def __init__(self):\n        pass\n\n    def execute(self):\n        print('Executing MVVM')