我使用了' StackNavigator
',当导航代码写入按钮事件时,我有问题要推送。但是如果我们直接对 onPress 事件进行编码,它就可以正常工作,
导入文件。
import { StackNavigator } from "react-navigation";
import SignUpScreen from "./SignUp";
推另一个正在工作:
render() {
console.disableYellowBox = true;
const { navigate } = this.props.navigation;
return (
<View style={styles.viewStyle}>
<TouchableHighlight style = {styles.buttonStart}
onPress={() => navigate("SignUpCompany")}>
<Image
source={require('./Images/hire.png')}
/>
</TouchableHighlight>
</View>
);
}
推送另一个通过功能不起作用:
pushcode() {
console.log('call');
this.props.navigation.navigate('SignUp');
}
render() {
return (
<TouchableHighlight style = {styles.buttonStart}
onPress={this.pushcode}>
<Image
source={require('./Images/hire.png')}
/>
</TouchableHighlight>
);}
点击按钮错误:
谢谢。请帮我。