How to go to the home page when you click on the image title under the stack navigation

I need to navigate the homepage when I click on the title. The image is under the stack navigator in the App.js file

+4
source share
1 answer

Put this code on the page where you want to return the button

static navigationOptions = {
    {navigation} = this.props
    headerTitle: <YourTitleComponent/>,
    headerRight: (
      <YourClickableComponentWithTheImage
        onPress={() => navigation.navigate('toTheScreenYouWant'}
      />
    ),
  };

You can also use HeaderLeft and change the title component to a simple String

0
source

Source: https://habr.com/ru/post/1694714/


All Articles