Parcourir la source

Update README.md

Tal Kol il y a 9 ans
Parent
révision
f559b0672d
1 fichiers modifiés avec 12 ajouts et 0 suppressions
  1. 12
    0
      README.md

+ 12
- 0
README.md Voir le fichier

96
 }
96
 }
97
 ```
97
 ```
98
 
98
 
99
+#### Step 3 - That's it
100
+
101
+If you want to do a navigation action like push a new screen over an existing one, take a look at the [Screen API](#screen-api). It would look something like this:
102
+
103
+```js
104
+// this would go inside the Component implementation of one of your screens, like FirstTabScreen.js
105
+this.props.navigator.push({
106
+  screen: 'example.PushedScreen',
107
+  title: 'Pushed Screen'
108
+});
109
+```
110
+
99
 ## Top Level API
111
 ## Top Level API
100
 
112
 
101
 #### `Navigation`
113
 #### `Navigation`