Lines Matching refs:View
12 …on, ArkUI uses the Model-View-ViewModel (MVVM) architecture. The MVVM divides an application into …
15 - View: displays data on the UI and interacts with users. No service logic is contained. It dynamic…
16 - ViewModel: manages UI state and interaction logic. As a bridge between Model and View, ViewModel …
28 **View**
54 …tic thread switching becomes very important. Generally, the ViewModel and View can work properly o…
60 * View cannot directly call data from Model. Instead, use the methods provided by ViewModel to call.
65 …er data. For example, the logic processing at ViewModel cannot depend on a value on the UI at View.
69 This is the core principle of View design. A component should comply with the following logic:
537 …opment of ArkUI should use the MVVM mode. Pages and components are at the View layer, and pages ar…
572 **View**
574 The View layer is organized as required. You need to distinguish the following three types of compo…
594 * View
607 import { TodoComponent } from './../View/TodoComponent'
608 import { MultiChooseComponent } from './../View/AllchooseComponent'
609 import { ThingsComponent } from './../View/ThingsComponent'