在React Native上是否可以获取当前路由?如果路线是特定的,我想呈现一个条件标题,但是我通过@react-navigation/bottom-tabs
使用TabBarNavigator
作为包罗万象,因为这是我的主要导航在屏幕上移动的方式。
<View>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="My App"
component={TabBarNavigator}
options={{
header: () => {
if( route === 'some route' ){
return <MyCustomHeader />
} else {
return <MyRegularHeader />
}
}
}}
/>
</Stack.Navigator>
</NavigationContainer>
</View>