Daniel Zlotin il y a 7 ans
Parent
révision
ef681b07fd

+ 2
- 2
playground/src/app.js Voir le fichier

@@ -1,8 +1,8 @@
1 1
 const Navigation = require('react-native-navigation');
2
-const { registerComponents } = require('./components');
2
+const { registerScreens } = require('./screens');
3 3
 
4 4
 function start() {
5
-  registerComponents();
5
+  registerScreens();
6 6
   Navigation.events().onAppLaunched(() => {
7 7
     Navigation.setRoot({
8 8
       stack: {

playground/src/containers/BackHandlerScreen.js → playground/src/screens/BackHandlerScreen.js Voir le fichier


playground/src/containers/CustomDialog.js → playground/src/screens/CustomDialog.js Voir le fichier


playground/src/containers/CustomTransitionDestination.js → playground/src/screens/CustomTransitionDestination.js Voir le fichier


playground/src/containers/CustomTransitionOrigin.js → playground/src/screens/CustomTransitionOrigin.js Voir le fichier


playground/src/containers/LifecycleScreen.js → playground/src/screens/LifecycleScreen.js Voir le fichier


playground/src/containers/ModalScreen.js → playground/src/screens/ModalScreen.js Voir le fichier


playground/src/containers/OptionsScreen.js → playground/src/screens/OptionsScreen.js Voir le fichier


playground/src/containers/OrientationDetectScreen.js → playground/src/screens/OrientationDetectScreen.js Voir le fichier


playground/src/containers/OrientationSelectScreen.js → playground/src/screens/OrientationSelectScreen.js Voir le fichier


playground/src/containers/PushedScreen.js → playground/src/screens/PushedScreen.js Voir le fichier

@@ -36,10 +36,12 @@ class PushedScreen extends Component {
36 36
 
37 37
   async onClickPush() {
38 38
     await Navigation.push(this.props.componentId, {
39
-      name: 'navigation.playground.PushedScreen',
40
-      passProps: {
41
-        stackPosition: this.getStackPosition() + 1,
42
-        previousScreenIds: _.concat([], this.props.previousScreenIds || [], this.props.componentId)
39
+      component: {
40
+        name: 'navigation.playground.PushedScreen',
41
+        passProps: {
42
+          stackPosition: this.getStackPosition() + 1,
43
+          previousScreenIds: _.concat([], this.props.previousScreenIds || [], this.props.componentId)
44
+        }
43 45
       }
44 46
     });
45 47
   }

playground/src/containers/ScrollViewScreen.js → playground/src/screens/ScrollViewScreen.js Voir le fichier


playground/src/containers/SideMenuScreen.js → playground/src/screens/SideMenuScreen.js Voir le fichier


playground/src/containers/TextScreen.js → playground/src/screens/TextScreen.js Voir le fichier


playground/src/containers/TopTabOptionsScreen.js → playground/src/screens/TopTabOptionsScreen.js Voir le fichier


playground/src/containers/TopTabScreen.js → playground/src/screens/TopTabScreen.js Voir le fichier


playground/src/containers/WelcomeScreen.js → playground/src/screens/WelcomeScreen.js Voir le fichier


playground/src/containers/index.js → playground/src/screens/index.js Voir le fichier

@@ -16,7 +16,7 @@ const SideMenuScreen = require('./SideMenuScreen');
16 16
 const TopTabScreen = require('./TopTabScreen');
17 17
 const TopTabOptionsScreen = require('./TopTabOptionsScreen');
18 18
 
19
-function registerComponents() {
19
+function registerScreens() {
20 20
   Navigation.registerComponent(`navigation.playground.CustomTransitionDestination`, () => CustomTransitionDestination);
21 21
   Navigation.registerComponent(`navigation.playground.CustomTransitionOrigin`, () => CustomTransitionOrigin);
22 22
   Navigation.registerComponent(`navigation.playground.ScrollViewScreen`, () => ScrollViewScreen);
@@ -36,5 +36,5 @@ function registerComponents() {
36 36
 }
37 37
 
38 38
 module.exports = {
39
-  registerComponents
39
+  registerScreens
40 40
 };