4

this is my stack navigator enter image description here

this is my drawer navigator enter image description here

the problem is my Drawer navigtor header in stack navigator screen 2 - [name='Details',component='Anote'],
I want to remove the drawer navigator from the below picture [ie. one with the title=[Notes Maker]]

enter image description here

Ashish Saini
  • 190
  • 3
  • 11

2 Answers2

5
  • if you remove header of stack.Navigator use the screenOptions attribute and make false the headerShown :

    screenOptions={{headerShown:false}}
    
  • but is you want to remove the header of Drawer.Navigator use the options attribute and make false the headerShown:

    options={{headerShown: false}}
    
Peter Csala
  • 17,736
  • 16
  • 35
  • 75
AS Irfani
  • 71
  • 1
  • 2
2

well if you remove options={{ headerShow: true}} from <Drawer.screem ... > tag it will works because according to documentation: headerShown# Whether to show or hide the header for the screen. The header is not shown by default. Setting this to true shows the header.

Arfan ali
  • 429
  • 2
  • 5
  • 1
    if I do that it will be hidden for both the stack screen, I want to hide it in stack screen -2 [component = Anote] only – Ashish Saini Mar 31 '21 at 08:30