diff --git a/docs/UsingNavigators.md b/docs/UsingNavigators.md index 9d6647ebe..c16ef5d9f 100644 --- a/docs/UsingNavigators.md +++ b/docs/UsingNavigators.md @@ -117,8 +117,8 @@ class SimpleNavigationApp extends Component { { + // Function to call when a new scene should be displayed + onForward={() => { const nextIndex = route.index + 1; navigator.push({ title: 'Scene ' + nextIndex, @@ -152,10 +152,12 @@ export default class MyScene extends Component { render() { return ( - Current Scene: { this.props.title } + Current Scene: {this.props.title} + Tap me to load the next scene + Tap me to go back