在以下实现中,我希望InfoStackScreen在打开时掩盖底部的选项卡,但仍显示BottomTabs组件的选项卡栏。我在做什么错了?
<MainDrawer.Navigator
drawerContent={props => <DrawerContent {...props} />}
initialRouteName="Home">
<MainDrawer.Screen name="Home" component={BottomTabs} />
<MainDrawer.Screen name="info" component={InfoStackScreen} />
</MainDrawer.Navigator>