“react”:“^ 15.2.1”,
“react-native”:“^ 0.30.0”,
我开始收到很多关于样式表的警告。我实际上没有使用React.PropTypes验证的样式表,那么为什么抛出这些警告?
const styles = StyleSheet.create({ welcome: { fontSize: 20,textAlign: "center",margin: 10,},
ExceptionsManager.js:76 Warning: You are manually calling a
React.PropTypes validation function for thefontSize
prop on
StyleSheet welcome
. This is deprecated and will not work in the next
major version. You may be seeing this warning due to a third-party
PropTypes library. See 07000
for details.reactConsoleError @ExceptionsManager.js:76 Warning: You are manually calling a
React.PropTypes validation function for thetextAlign
prop on
StyleSheet welcome
. This is deprecated and will not work in the next
major version. You may be seeing this warning due to a third-party
PropTypes library. See 07000ExceptionsManager.js:76 Warning: You are manually calling a
React.PropTypes validation function for themargin
prop on
StyleSheet welcome
. This is deprecated and will not work in the next
major version. You may be seeing this warning due to a third-party
PropTypes library. See 07000
for details.