undefined不是对象(评估'_this2.props.navigation.navigate')需要帮助导航

时间:2018-03-27 22:54:28

标签: react-native react-navigation

在我决定将Header作为自己的HeaderComponent之前,我能够导航到我的Profile组件。

在HeaderComponent上添加H'可以消除错误,但是它不会导航到Profile组件。

App.js

git filter-branch

标题组件

navigation={this.props.navigation}

渲染headercomponent

const RootStack = StackNavigator(
  // route configurator
  {
    Dashboard: {
      screen: Dashboard,
    },
    TripDetail: {
      screen: TripDetail,
    },
    Moment: {
      screen: Moment,
    },
    Profile: {
      screen: Profile,
    },
    Discover: {
      screen: Discover,
    },
  },
  // options
  {
    initialRouteName: 'Dashboard',
  }
);

0 个答案:

没有答案