I have a drawer navigator and stack navigator, the drawer opens, but the header from stack navigator stays on top and does not go to the right. How can you make it work like this? my code
const DrawerNavigator = createDrawerNavigator({ Home: { screen: Menu }, Test: { screen: Test } },{ drawerBackgroundColor: 'red', //contentComponent: CustomDrawer, }) const StackNavigator = createStackNavigator( { Main: { screen: DrawerNavigator, } }, { mode: 'modal', headerMode: 'float', }, ) 
