(「this.props.navigation.navigate」を評価する)オブジェクトではありません私の最初のネイティブアプリケーションを反応させ、私はこのエラーました:未定義のは、私が作ってい
export default class HomeScreen extends React.Component {
render() {
const {navigate} = this.props.navigation;
return (
<View style={styles.container}>
<Text>choose festival</Text>
<Button
title="Select SummerBurst 2017"
onPress={() =>
this.props.navigation.navigate('FestivalScreen', { name: 'SummerBurst' })
}
/>
</View>
);
}
}
I:コードのこの部分でUndefined is not an object (evaluating "this.props.navigation.navigate")
をこれは、私が反応ナビゲーションの小道具を渡すことはないが、実際にこれを行う方法はわからないからだと思う。私のレポは次のようになります:https://github.com/meurling/festivalApp
ありがとう!