|
@@ -41,7 +41,7 @@ Navigation.startTabBasedApp({
|
41
|
41
|
|
42
|
42
|
#### Step 2 - Register all of your screen components
|
43
|
43
|
|
44
|
|
-Every screen that you want to be able to place in a tab, push to the navigation stack or present modally needs to be registered. We recommend doing this in a central place, like [screens/index.js](https://github.com/wix/react-native-navigation/blob/master/example/src/screens/index.ios.js).
|
|
44
|
+Every screen that you want to be able to place in a tab, push to the navigation stack or present modally needs to be registered. We recommend doing this in a central place, like [screens/index.js](https://github.com/wix/react-native-navigation/blob/master/example/src/screens/index.js).
|
45
|
45
|
|
46
|
46
|
> Note: Since your screens will potentially be bundled with other packages, your registered name must be **unique**! Follow a namespacing convention like `packageName.ScreenName`.
|
47
|
47
|
|
|
@@ -70,4 +70,4 @@ this.props.navigator.push({
|
70
|
70
|
screen: 'example.PushedScreen',
|
71
|
71
|
title: 'Pushed Screen'
|
72
|
72
|
});
|
73
|
|
-```
|
|
73
|
+```
|