|
@@ -10,6 +10,7 @@ Push a new screen into this screen's navigation stack.
|
10
|
10
|
this.props.navigator.push({
|
11
|
11
|
screen: 'example.ScreenThree', // unique ID registered with Navigation.registerScreen
|
12
|
12
|
title: undefined, // navigation bar title of the pushed screen (optional)
|
|
13
|
+ subtitle: undefined, // navigation bar subtitle of the pushed screen (optional)
|
13
|
14
|
titleImage: require('../../img/my_image.png'), // iOS only. navigation bar title image instead of the title text of the pushed screen (optional)
|
14
|
15
|
passProps: {}, // Object that will be passed as props to the pushed screen (optional)
|
15
|
16
|
animated: true, // does the push have transition animation or does it happen immediately (optional)
|
|
@@ -369,4 +370,4 @@ https://developer.apple.com/library/content/documentation/UserExperience/Concept
|
369
|
370
|
|
370
|
371
|
You can define actions and listen for interactions on the pushed screen with the `PreviewActionPress` event.
|
371
|
372
|
|
372
|
|
-Previewed screens will have the prop `isPreview` that can be used to render different things when the screen is in the "Peek" state and will then recieve a navigator event of `willCommitPreview` when in the "Pop" state.
|
|
373
|
+Previewed screens will have the prop `isPreview` that can be used to render different things when the screen is in the "Peek" state and will then recieve a navigator event of `willCommitPreview` when in the "Pop" state.
|