在React-Native中使用PropTypes.string

时间:2018-03-07 11:37:52

标签: android react-native react-proptypes

我正在尝试在我的应用中使用react-native-gifted-chat,但是当我构建应用时,会出现以下错误。

enter image description here

当我在Chat.js的第46行看时,它看起来像这样。

45 Chat.propTypes = {
46   name: React.PropTypes.string,
47 };

知道这有什么问题吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

根据React的最新文档,您需要按照PropTypes提及的方式使用here,因为此包已与React模块<分开/ p>

import PropTypes from 'prop-types'

Chat.propTypes = {
   name: PropTypes.string,
 };