Screencomponent
A component used in the root of a modal extension to define a screen.
Anchor to screenScreen
Used to identify this screen as a destination in the navigation stack.
The title of the screen which will be displayed on the UI.
Displays a loading indicator when true
. Set this to true
when performing an asynchronous task, and then to false when the data becomes available to the UI.
Triggered when the screen is navigated to.
Triggered when the user navigates back from this screen. Runs after screen is unmounted.
A callback that gets triggered when the navigation event completes and the screen receives the parameters.
A callback that allows you to override the secondary navigation action. Runs when screen is mounted.
Dictates how the Screen
will be presented when navigated to.
Displays a secondary action button on the screen.
Anchor to screenpresentationpropsScreenPresentationProps
Displays the screen from the bottom on navigate
when true
.
Anchor to secondaryactionpropsSecondaryActionProps
Triggered when the secondary action button is pressed.
Displays the name of the secondary action in the action bar.
Sets whether the action can be tapped.
Navigate to another screen
Preview

Anchor to examplesExamples
Navigating using NavigationAPI with Screens within Navigators