我有一个组件:
<TouchableHighlight
style={styles.button}
underlayColor='red'
onPress={() => this.bootEvent(item)}>
<Text style={{ color: '#ffffff', fontSize: 12, fontWeight: 'bold' }}>Text</Text>
</TouchableHighlight>
这是样式:
button: {
alignItems: 'center',
backgroundColor: '#4267b2',
padding: 8
}
问题是,当我单击按钮时,会调用 onPress 函数,但 TouchableHighlight 的颜色保持不变。
我也试过这个:
underlayColor={'red'}
带括号,但它是一样的。
最佳答案
如果有人遇到这种行为,需要提供 onPress
以查看颜色变化或高亮效果的工作。见 https://github.com/facebook/react-native/issues/14908
关于javascript - TouchableHighlight underlayColor 不起作用。颜色只是不改变,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52339786/