我有这个
我有一个顶部导航,但是我希望当他们改变视图时,他们也改变隐藏的标签并显示它们。我该怎么办?
我正在使用反应导航5
这是我的代码
const topTab = createMaterialTopTabNavigator();
const paginador = () => {
return (
<topTab.Navigator
tabBarOptions={{
style: {},
tabStyle: {
width: 160,
},
}}>
<topTab.Screen name="pestaña1" component={pestaña1} />
<topTab.Screen name="prestaña2" component={prestaña2} />
<topTab.Screen name="prestaña3" component={prestaña3} />
<topTab.Screen name="prestaña4" component={prestaña4} />
<topTab.Screen name="prestaña5" component={prestaña5} />
</topTab.Navigator>
);
};