onInit
|
() => void
|
Listens for page initialization.
|
Page initialization is complete. This function is called only once in the page lifecycle.
|
onReady
|
() => void
|
Listens for page creation.
|
A page is created. This function is called only once in the page lifecycle.
|
onShow
|
() => void
|
Listens for page display.
|
The page is displayed.
|
onHide
|
() => void
|
Listens for page disappearance.
|
The page disappears.
|
onDestroy
|
() => void
|
Listens for page destruction.
|
The page is destroyed.
|
onBackPress
|
() => boolean
|
Listens for the back button action.
|
The back button is touched.
- true means that the page processes the return logic.
- false means that the default return logic is used.
- If no value is returned, the default return logic is used.
|
onActive()5+
|
() => void
|
Listens for page activation.
|
The page is activated.
|
onInactive()5+
|
() => void
|
Listens for page suspension.
|
The page is suspended.
|
onNewRequest()5+
|
() => void
|
Listens for a new FA request.
|
The FA has been started and a new request is received.
|