引用react-native-scrollable-tab-view 之后Cannot read property 'style' of undefined问题

前端之家收集整理的这篇文章主要介绍了引用react-native-scrollable-tab-view 之后Cannot read property 'style' of undefined问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

先看一下你的react-native-scrollable-tab-view 是什么版本的额,依赖的react-native是什么版本,

那么降低react-native-scrollable-tab-view 的版本,要么升级react-native可以解决这个问题


具体原因是因为,原来是这样的,

View.propTypes.style

现在变成这样了

const { ViewPropTypes } = ReactNative = require('react-native');
ViewPropTypes.style
原文链接:https://www.f2er.com/react/303749.html

猜你在找的React相关文章