编辑2017/06/02:
React Native 0.44已经弃用了View.propTypes
.相反,请执行以下操作:
import { ViewPropTypes } from "react-native"; /* later... */ propTypes: { ...ViewPropTypes, myProp: PropTypes.string }
以前的答案:
绝对:
var View = React.View; /* later... */ propTypes: { ...View.propTypes, myProp: PropTypes.string }