我在React Antive App中使用了样式显示属性,并给出以上错误。
战争:失败的proptype:无效的props.Style键'显示器'
const styles = {
hideRmoveButton: {
display:'none'
},
showRemoveButton: {
height: 20
}
};`
<Button transparent style={okToRemove? styles.showRemoveButton : styles.hideRmoveButton} >
<Icon name='trash' style={{color:'#999'}}/>
</Button>
display: none
不适合反应。相反,您可以使用opacity
并将其设置为零。
hideRmoveButton: {
opacticy: 0
},