Я пытался создать навигатор верхней вкладки материала, используя библиотеку @react-navigation/material-top-tabs
, но обнаружил ошибку. Я точно показал, в документах до сих пор не могу найти ошибку, вот код моего экрана навигатора.
const tab = createMaterialTopTabNavigator()
export class Home extends Component {
render() {
return (
<NavigationContainer independent={true}>
<View>
<Appbar.Header>
<Appbar.Action icon="home" />
<Appbar.Content title="Home" />
</Appbar.Header>
<tab.Navigator initialRouteName={CurrentLoc} tabBarOptions={{
activeTintColor: '#04395e',
swipeEnabled: true
}}>
<tab.Screen name="Curent Location" component={CurrentLoc} options={{
tabBarLabel: 'Current Location'}}/>
<tab.Screen name="India" component={IndiaStat} options={{
tabBarLabel: 'India'}}/>
</tab.Navigator>
</View>
</NavigationContainer>
)
}
}
export default Home
Снимок экрана ошибки: Снимок экрана