Quellcode durchsuchen

Fix wrong usage of setStackRoot command in playground app (#6136)

For some reason the stack root was set to another stack instead of the children.
Guy Carmeli vor 4 Jahren
Ursprung
Commit
913fd75570
Es ist kein Benutzerkonto mit dieser Commiter-Email verbunden
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      playground/src/screens/StackScreen.js

+ 2
- 2
playground/src/screens/StackScreen.js Datei anzeigen

@@ -71,10 +71,10 @@ class StackScreen extends React.Component {
71 71
 
72 72
   search = () => Navigation.push(this, Screens.Search);
73 73
 
74
-  setStackRoot = () => Navigation.setStackRoot(this, stack([
74
+  setStackRoot = () => Navigation.setStackRoot(this, [
75 75
     component(Screens.Pushed, { topBar: { title: { text: 'Screen A' } } }),
76 76
     component(Screens.Pushed, { topBar: { title: { text: 'Screen B' } } }),
77
-  ]));
77
+  ]);
78 78
 
79 79
   setStackRootWithId = () => Navigation.setStackRoot(this,
80 80
     {