如何在单击堆栈导航下单击标题图像的同时导航到主页

时间:2018-03-10 09:38:19

标签: reactjs react-native

我需要在点击标题图片时浏览主页。该图像位于App.js文件中的堆栈导航器

1 个答案:

答案 0 :(得分:0)

将此代码放在您想让按钮返回的页面上

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

您也可以使用HeaderLeft,并将标题组件更改为简单的字符串