在我决定将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',
}
);