を私は同じindex.android.jsファイルで、この単純なコードを持っていて移動します。は、変数を見つけることができません:反応-ナビゲーション
import React, { Component } from 'react';
import {
AppRegistry,
Text,
View,
Button
} from 'react-native';
import {StackNavigator} from 'react-navigation';
// First Page
class FirstPage extends Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Text>Hello First Page</Text>
<Button
onPress={() => navigate('SecondPage')}
title="Go to second page"
/>
</View>
);
}
}
// Second Page
class SecondPage extends Component {
static navigationOptions = {
title: 'Second Page',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Text>Hello Second Page</Text>
<Button
onPress={() => navigate('FirstPage')}
title="Go to first page"
/>
</View>
);
}
}
const SimpleApp = StackNavigator({
FirstPage: { screen: FirstPage},
SecondPage: { screen: SecondPage},
});
AppRegistry.registerComponent('MoviesTickets_YCH',() => FirstPage);
私が欲しいのは、画面間を移動することですが、私は持っていますエラーメッセージ:変数を見つけることができません:ナビゲート、私はそれが何故起こるのか、何のアイデアはありませんどのように? renderメソッドであなたの助け
[変数を見つけることができません:navigate](https://stackoverflow.com/questions/43717456/cant-find-variable-navigate) –