我有一个bottomTabNavigator和一个topTabNavigator,如果我单击底部导航的第一个选项卡,它将加载顶部导航的第一个选项卡。我想要的是让我的底部导航的第一个选项卡在单击时加载自己的页面,而顶部导航仍在那里。但是我如何做到这一点呢?
我已经尝试过几件事。
// This is my code, what I want is for Home in the bottom nav to go to the home page
// and on the home page still have the bottom nav and top nav visible.
// How does the menu structure need to look like to make this happen?
export const HomeTop = createMaterialTopTabNavigator({
Introductie:{
screen: Introduction
},
Blog:{
screen: () => <NoAuth/>
},
{...}
});
export const MiddleScreens = createBottomTabNavigator({
Home:{
screen: HomeTop
},
{...}
});
我无法实现我想要实现的目标。另外,由于我目前对尝试其他方法一无所知。 我正在使用React Navigation V3。有没有更简单的方法可以实现?还是有适用于此版本的解决方法?
简而言之:我想在底部导航的第一个选项卡页面上具有顶部导航和底部导航,这是它自己的页面。