在我将shoutem ui安装到项目并导入到ui后,出现此错误。 “捆绑失败:错误:无法解析模块`react-native / Libraries / StyleSheet / ColorPropType.js”
我试图遵循本机错误页面上的建议
watchman watch-del-all
。
node_modules
文件夹:rm -rf node_modules && npm install
。rm -rf /tmp/metro-bundler-cache-*
或npm start -- --reset-cache
。rm -rf /tmp/haste-map-react-native-packager-*
。答案 0 :(得分:0)
某些问题在版本> = 0.58.x时发生了。 使用以下过程或使用本机<0.58
创建脚本文件 fix.sh
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<div id = "aDiv" draggable="true"></div>
和package.json中的
cp ./node_modules/react-native/Libraries/DeprecatedPropTypes/DeprecatedViewStylePropTypes.js ./node_modules/react-native/Libraries/Components/View/ViewStylePropTypes.js
cp ./node_modules/react-native/Libraries/DeprecatedPropTypes/DeprecatedColorPropType.js ./node_modules/react-native/Libraries/StyleSheet/ColorPropType.js
cp ./node_modules/react-native/Libraries/DeprecatedPropTypes/DeprecatedImageStylePropTypes.js ./node_modules/react-native/Libraries/Image/ImageStylePropTypes.js