Navigation
API Reference
useNavigation
A hook that lets you push and pop view components in the navigation stack.
You most likely won't use this hook too often. To push a new component, use the Push Action. When a user presses ESC
, we automatically pop to the previous component.
Signature
Example
Return
A Navigation object with Navigation.push and Navigation.pop functions. Use the functions to alter the navigation stack.
Types
Navigation
Return type of the useNavigation hook to perform push and pop actions.
Properties
Property | Description | Type |
---|---|---|
pop* | Pop current view component from the navigation stack. |
|
push* | Push a new view component to the navigation stack. |
|
Last updated