header left react navigation code example
Example 1: react native navigation header Right
screenOptions={({route, navigation}) => ({ // transform screenOptions to a function
headerRight: () => (
<Button
onPress={() => navigation.navigate('Home');
/>
)
})}
Example 2: stack navigation button
onPress={() => navigation.navigate('Item Detail')}