You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some old components build by react-navigation, its all export a navigator like: const MyNavigator = StackNavigator({ Login: { screen: LoginScreen }, Logout: { screen: LogoutScreen } });
After use react-native-router-flux, I don't want refactor all my navigation, so if there is a way combine react-native-router-flux with react-navigation, it will be same my life: <Router backAndroidHandler={this.onBackPress()}> <Stack> < MyNavigator /> </Stack> <Tab> < MyNavigator1 /> ... MyNavigator234 </Tab> </Router>
The text was updated successfully, but these errors were encountered:
I have some old components build by react-navigation, its all export a navigator like:
const MyNavigator = StackNavigator({ Login: { screen: LoginScreen }, Logout: { screen: LogoutScreen } });
After use react-native-router-flux, I don't want refactor all my navigation, so if there is a way combine react-native-router-flux with react-navigation, it will be same my life:
<Router backAndroidHandler={this.onBackPress()}> <Stack> < MyNavigator /> </Stack> <Tab> < MyNavigator1 /> ... MyNavigator234 </Tab> </Router>
The text was updated successfully, but these errors were encountered: