我正在使用可触摸的亮点onPress无法正常工作
这是我的代码
<View style={styles.savebtnview}>
<TouchableHighlight style={styles.saveButtonStyle} onPress={() => this._submitform()}>
<Text style = {styles.saveButtonTextStyle}>
SAVE
</Text>
</TouchableHighlight>
</View>
这是我的submitForm动作
_submitform = () =>{
Alert.alert(
'Sample',
'Success'
);
}
这是我的CSS
savebtnview:{
flexDirection: 'row',
margin: 10
},
saveButtonStyle: {
height: 50,
borderWidth: 1,
borderRadius: 10,
justifyContent: 'center',
flex: 1,
flexDirection: 'row',
backgroundColor: '#0e3a5e',
},
saveButtonTextStyle: {
fontSize: 20,
color: 'white',
alignSelf: 'center'
},
如果我点击按钮,警报就不会到来。哪里做错了? Anyhelp可能会受到赞赏。提前谢谢。