Answers for "navigating to another screen from the react native navigation header"

0

navigating to another screen from the react native navigation header

//pass in the navigation into the options like so and use it to navigate
options={({ navigation }) => ({
           title: 'Home',
              headerStyle: {
                backgroundColor: '#273469',
              },
              headerTintColor: '#EBF2FA',
              headerRight: () => (
                <Icon
                  onPress={() => navigation.navigate('ProfileScreen')}
                  name="edit"
                  type="material"
                />
              ),
            })}
Posted by: Guest on March-23-2022

Code answers related to "navigating to another screen from the react native navigation header"

Code answers related to "Javascript"

Browse Popular Code Answers by Language