Lines Matching refs:Index
86 // Index.ets
97 console.info('Index onPageShow');
101 console.info('Index onPageHide');
106 console.info('Index onBackPress');
217 …Index** page contains two custom components. One is **MyComponent** decorated with \@Entry, which …
220 …yComponent onDidBuild -> Child aboutToAppear -> Child build -> Child onDidBuild -> Index onPageShow
225 …the **Index** page is hidden, and the **Index onPageHide** callback is invoked. As the called API …
227 …eplaceUrl** is called, the **Index** page is destroyed. In this case, the execution of lifecycle c…
229 … When the **Back** button is clicked, the **Index onBackPress** callback is invoked, and the curre…
231 …Index onPageHide** callback is invoked. As the current **Index** page is not destroyed, **aboutToD…
234 - When the application exits, the following callbacks are executed in order: Index onPageHide -> My…
241 // Index.ets
246 struct Index {
251 console.log(`Index onPageShow`);
253 console.log(`Index onPageHide`);
272 url: 'pages/Index'