Giter VIP home page Giter VIP logo

Comments (10)

mmazzarolo avatar mmazzarolo commented on April 24, 2024 3

Ha!
I found the workaround, I just hide the header from the top AppStackNavigator:

const ApplianceStackNavigator = StackNavigator({
  ApplianceListScreen: { screen: ApplianceListScreen },
  NewApplianceScreen: { screen: NewApplianceScreen }
}, {
  initialRouteName: 'ApplianceListScreen',
  headerMode: 'screen'
})

const MainDrawerNavigator = DrawerNavigator({
  ApplianceStackNavigator: { screen: ApplianceStackNavigator }
}, {
  initialRouteName: 'ApplianceStackNavigator',
  headerMode: 'screen'
})

const AppStackNavigator = StackNavigator({
  SplashScreen: { screen: SplashScreen },
  AuthScreen: { screen: AuthScreen },
  MainDrawerNavigator: { screen: MainDrawerNavigator }
}, {
  headerMode: 'screen',
  navigationOptions: { header: { visible: false } } // ADDED THIS
})

Not sure if this is the "right" solution or just a workaround though... In my opinion, It should be possible nesting two StackNavigator without doubling the Header (just like in ex-navigator)... what do you think?

from react-navigation.

pr4deep94 avatar pr4deep94 commented on April 24, 2024 3

Hi ,
Drawer nested navigation is working. please help
Below is my routing configuration

import React from 'react';
import { TabNavigator, StackNavigator, DrawerNavigator } from 'react-navigation';
import Login from '../containers/Login/LoginScreen';
import HomeContainer from '../containers/Home';
import ProfileContainer from '../containers/Profile';
import CreateProject from '../containers/CreateProject';
import DrawerMenu from '../components/DrawerMenu';
import Dimensions from 'Dimensions';

const HomeStackNavigator = StackNavigator({
Home: { screen: HomeContainer },
CreateProject: { screen: CreateProject }
}, {
headerMode: 'none',
navigationOptions: {
headerVisible: false,
}
});

const MainDrawerNavigator = DrawerNavigator({
HomeStackNavigator: { screen: HomeStackNavigator },
Profile: { screen: ProfileContainer }
},{
contentComponent: DrawerMenu,
drawerWidth: Dimensions.get('window').width - 100
}, {
headerMode: 'none',
navigationOptions: {
headerVisible: false,
}
});

const Root = StackNavigator({
Login: { screen: Login },
Authorize: { screen: MainDrawerNavigator }
}, {
headerMode: 'none',
navigationOptions: {
headerVisible: false,
}
});

export default Root;
Thanks in Advance

from react-navigation.

satya164 avatar satya164 commented on April 24, 2024

Can you check if it's fixed now?

from react-navigation.

satya164 avatar satya164 commented on April 24, 2024

Closing this since this has been fixed.

from react-navigation.

mmazzarolo avatar mmazzarolo commented on April 24, 2024

Sorry @satya164 , I couldn't try it this weekend!
Thanks for the fast reply, I tried to use the Master branch and the drawer works... but it shows me a double navigation bar now 👼

schermata 2017-01-30 alle 11 20 00

from react-navigation.

satya164 avatar satya164 commented on April 24, 2024

@mmazzarolo yeah, feel free to open a new issue for that

from react-navigation.

satya164 avatar satya164 commented on April 24, 2024

Actually I opened #88 for that

from react-navigation.

nzrsrk avatar nzrsrk commented on April 24, 2024

{
headerMode: 'none',
navigationOptions: {
headerVisible: false,
}
}); not working still there is header with white color arise on drawer pages

from react-navigation.

wzup avatar wzup commented on April 24, 2024

@pr4deep94
Format your code

from react-navigation.

srvkataria avatar srvkataria commented on April 24, 2024

Hello 👋
I have created a working example on react-navigation version-5.x.x, nesting different navigators -- stack, drawer & bottom-tabs. The overall approach has also been detailed in my blog section.

Link to github repo:
https://github.com/mvpbuddy/react-native-nested-navigators/

For a more detailed overview, you can checkout my blog on this:
https://mvpbuddy.io/blog/detail/how-to-build-an-app-with-nested-stack-drawer-bottom-tab-navigators

from react-navigation.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.