我在react native app中使用了样式显示属性,它给出了上述错误。
Warining:失败的propType:提供给View
的props.style键'display'无效const styles = {
hideRmoveButton: {
display:'none'
},
showRemoveButton: {
height: 20
}
};`
<Button transparent style={okToRemove? styles.showRemoveButton : styles.hideRmoveButton} >
<Icon name='trash' style={{color:'#999'}}/>
</Button>
答案 0 :(得分:0)
display: none
不适用于react-native。相反,您可以使用opacity
并将其设置为零。
hideRmoveButton: {
opacticy: 0
},