Browse Source

Update README.md

Tal Kol 9 years ago
parent
commit
f559b0672d
1 changed files with 12 additions and 0 deletions
  1. 12
    0
      README.md

+ 12
- 0
README.md View File

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`