react-navigation#createAppContainer JavaScript Examples

The following examples show how to use react-navigation#createAppContainer. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: routes.js    From SemanaOmnistack10 with MIT License 6 votes vote down vote up
Routes = createAppContainer(
    createStackNavigator({
        Main: {
            screen: Main,
            navigationOptions: {
                title: 'DevRadar'
            }
        },
        Profile: {
            screen: Profile,
            navigationOptions: {
                title: 'Perfil no GitHub'
            }
        }
    }, {
        defaultNavigationOptions: {
            headerStyle: {
                backgroundColor: '#7D40E7',
            },
            headerBackTitleVisible: false,
            headerTintColor: '#FFF'
        }
    })
)
Example #2
Source File: App.js    From geometry_3d with MIT License 6 votes vote down vote up
AppNavigator = createAppContainer(
  createSwitchNavigator(
    {
      Loading: LoadingScreen,
      App: AppBottomNavigator,
      Auth: AuthStack,
      Objects: Object3DNavigator,
    },
    {
      initialRouteName: "Loading",
    }
  )
)
Example #3
Source File: routes.js    From devradar with MIT License 6 votes vote down vote up
Routes = createAppContainer(
    createStackNavigator({
        Main: {
            screen: Main,
            navigationOptions: {
                title: 'DevRadar'
            }
        },
        Profile: {
            screen: Profile,
            navigationOptions: {
                title: 'Perfil no Github'
            }
        }
    }, {
        defaultNavigationOptions: {
            headerTintColor: '#FFF',
            headerBackTitleVisible: false,
            headerStyle: {
                backgroundColor: '#7D40E7'
            }
        }
    })
)
Example #4
Source File: routes.js    From OmniStack-10.0 with MIT License 6 votes vote down vote up
Routes = createAppContainer(
    createStackNavigator({
        Main: {
            screen: Main,
            navigationOptions: {
                title: 'DevRadar'
            },
        },
        Profile: {
            screen: Profile,
            navigationOptions: {
                title: 'Perfil no Github'
            }
        },
    }, {
        defaultNavigationOptions: {
            headerTintColor: '#FFF',
            headerStyle: {
                backgroundColor: '#7D40E7'
            },
        },
    })
)
Example #5
Source File: App.js    From hugin-mobile with GNU Affero General Public License v3.0 6 votes vote down vote up
AppContainer = createAppContainer(createSwitchNavigator(
    {
        Login: {
            screen: LoginNavigator,
        },
        Home: {
           screen: HomeNavigator,
        },
    },
    {
        initialRouteName: 'Login',
    }
))
Example #6
Source File: Routes.js    From FinDevs with MIT License 6 votes vote down vote up
Routes = createAppContainer(
  createStackNavigator({
    Main: {
      screen: Main,
      navigationOptions: {
        title: 'FinDev'
      }
    },
    Profile: {
      screen: Profile,
      navigationOptions: {
        title: 'Github Profile'
      }
    }
  }, {
    defaultNavigationOptions: {
      headerTintColor: '#FFF',
      headerStyle: {
        backgroundColor: '#8E4DFF',
        

      }
    }
  })
)
Example #7
Source File: routes.js    From semana-omnistack-10 with MIT License 6 votes vote down vote up
Routes = createAppContainer(
  createStackNavigator({
    Main: {
      screen: Main,
      navigationOptions: {
        title: 'DevRadar'
      },
    },
    Profile: {
      screen: Profile,
      navigationOptions: {
        title: 'Perfil no Github'
      }
    },
  }, {
    defaultNavigationOptions: {
      headerTintColor: '#FFF',
      headerBackTitleVisible: false,
      headerStyle: {
        backgroundColor: '#7D40E7',
      },
    },
  })
)
Example #8
Source File: routes.js    From openweathermap-reactnative with MIT License 5 votes vote down vote up
Routes = createAppContainer(createSwitchNavigator({Main}))
Example #9
Source File: App.js    From searchBar with MIT License 5 votes vote down vote up
AppContainer =  createAppContainer(TabNavigator)
Example #10
Source File: App.js    From book-santa-stage-10 with MIT License 5 votes vote down vote up
AppContainer =  createAppContainer(switchNavigator)
Example #11
Source File: App.js    From barter-app-stage-5 with MIT License 5 votes vote down vote up
AppContainer =  createAppContainer(switchNavigator)
Example #12
Source File: App.js    From barter-app-stage-10 with MIT License 5 votes vote down vote up
AppContainer =  createAppContainer(switchNavigator)
Example #13
Source File: App.js    From Wily_Authentication with MIT License 5 votes vote down vote up
AppContainer =  createAppContainer(switchNavigator)
Example #14
Source File: App.js    From BedTimeStoriesPart7 with MIT License 5 votes vote down vote up
AppContainer = createAppContainer(TabNavigator)
Example #15
Source File: AppNavigator.js    From mern-stack with MIT License 5 votes vote down vote up
AppNavigator = createAppContainer(switchNavigator)
Example #16
Source File: Router.js    From mixpanel-react-native with Apache License 2.0 5 votes vote down vote up
AppContainer = createAppContainer(Router)
Example #17
Source File: App.js    From react-native-todolist with MIT License 5 votes vote down vote up
AppContainer = createAppContainer(MainNavigator)
Example #18
Source File: routes.js    From interface-nubank with MIT License 5 votes vote down vote up
Routes = createAppContainer(createSwitchNavigator({ Main }))
Example #19
Source File: routes.js    From haven with MIT License 5 votes vote down vote up
AppContainer = createAppContainer(AppNavigator)
Example #20
Source File: routes.js    From haven with MIT License 5 votes vote down vote up
OnboardingContainer = createAppContainer(OnboardingNavigator)
Example #21
Source File: App.js    From perform-2020-hotday with Apache License 2.0 5 votes vote down vote up
App = createAppContainer(AppNavigator)