警告:失败的道具类型:提供给视图的道具.style 键"显示"无效



我在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
 },

相关内容

  • 没有找到相关文章

最新更新