警告:propType失败:提供给['View'| 'RCTView']

时间:2018-09-25 08:37:45

标签: reactjs react-native

当显示此警告时,我在React native中使用了color属性。 我使用React-Native版本:0.57。

代码:

display: {
    flex: 2,
    justifyContent: "center",
    alignItems: "flex-end",
    backgroundColor: 'red',
    color: "white"
  },

错误

Warning: Failed propType: Invalid props.style key 'color' supplied to [ 'View' | 'RCTView' ]

1 个答案:

答案 0 :(得分:0)

您已经设置了backgroundColor组件支持的属性View,因此只需删除以下内容即可:

color: "white"

将摆脱警告。就像已经提到过的人color对于View来说不是有效的样式属性,请参见: http://facebook.github.io/react-native/docs/view-style-props