Complex Navigation Example with React Native
Run the following command with your project directory npm i react-navigation react-navigation-drawer react-navigation-tabs react-navigation-stack Project Structure src ->actions ->common ->components ->containers ->navigation -index.js ->reducers ->services ->store code for complex navigation open navigation folder inside index.js in any code editor with the following code index.js import React from 'react'; import { createAppContainer, createSwitchNavigator } from "react-navigation"; import { createDrawerNavigator } from 'react-navigation-drawer'; import { createBottomTabNavigator } from 'react-navigation-tabs'; import { createStackNavigator } from 'react-navigation-stack'; import Example from './containers/Example'; const FeedStack = createStackNavigator({ Feed: { screen: Example, navigationOptions: { headerTitle: 'Feed