I'm using react navigation 6 but there is no navigationOptions like react navigation 3 and 4. So I want to know is there any alternative in version 6 to use navigationOptions.?
CodePudding user response:
For stacks navigation you can use screenOptions
Here is the code of Stack
<Stack.Navigator
initialRouteName="Home"
screenOptions={{
headerMode: 'screen',
headerTintColor: 'white',
headerStyle: { backgroundColor: 'tomato' },
}}
>
Further you can check Here for Tab and Drawer and also check the Documentation Here
