You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param context - The data passed to the page through the NavigationEntry.context property.
111
-
*/
112
-
onNavigatingTo(context: any): void;
113
-
114
-
/**
115
-
* A method called after navigated to the page.
116
-
* @param context - The data passed to the page through the NavigationEntry.context property.
117
-
*/
118
-
onNavigatedTo(): void;
119
-
120
-
/**
121
-
* A method called before navigating from the page.
122
-
*/
123
-
onNavigatingFrom(): void;
124
-
125
-
/**
126
-
* A method called after navigated from the page.
127
-
* @param isBackNavigation - True if the Page is being navigated from using the Frame.goBack() method, false otherwise.
128
-
*/
129
-
onNavigatedFrom(isBackNavigation: boolean): void;
130
-
131
108
/**
132
109
* A basic method signature to hook an event listener (shortcut alias to the addEventListener method).
133
110
* @param eventNames - String corresponding to events (e.g. "propertyChange"). Optionally could be used more events separated by `,` (e.g. "propertyChange", "change").
0 commit comments