Lines Matching refs:custom

4 …efore we dive into the page and custom component lifecycle, it would be helpful to learn the relat…
9 - Page: UI page of an application. A page can consist of one or more custom components. A custom co…
12 The following lifecycle callbacks are provided for a page, that is, a custom component decorated wi…
15 - [onPageShow](../reference/apis-arkui/arkui-ts/ts-custom-component-lifecycle.md#onpageshow): Invok…
17 - [onPageHide](../reference/apis-arkui/arkui-ts/ts-custom-component-lifecycle.md#onpagehide): Invok…
19 - [onBackPress](../reference/apis-arkui/arkui-ts/ts-custom-component-lifecycle.md#onbackpress): Inv…
22 The following lifecycle callbacks are provided for a custom component decorated with \@Component:
25custom-component-lifecycle.md#abouttoappear): Invoked when the custom component is about to appear…
27 …ence/apis-arkui/arkui-ts/ts-custom-component-lifecycle.md#ondidbuild12): Invoked after the **build…
29 …ar](../reference/apis-arkui/arkui-ts/ts-custom-component-lifecycle.md#abouttodisappear): Invoked w…
38 Based on the preceding figure, let's look into the creation, re-rendering, and deletion of a custom
43 1. Custom component creation: An instance of a custom component is created by the ArkUI framework.
45 2. Initialization of custom component member variables: The member variables are initialized with l…
49 …uilt-in component is executed for rendering. If the child component is a custom component, the ren…
56 Re-rending of a custom component is triggered when its state variable is changed by an event handle…
61 … the mapping tables – created in step 4 of the [custom component creation and rendering process](#
66 A custom component is deleted when the branch of the **if** statement or the number of arrays in **…
77 2. The custom component and all its variables are deleted. Any variables linked to this component, …
80 …or a callback) being started from the **aboutToDisappear** callback, the custom component will rem…
217 In the preceding example, the **Index** page contains two custom components. One is **MyComponent**…
238 …is-arkui-observer.md#observeronrouterpageupdate11) to listen for page changes in custom components.