'react-native-elements' 有什么问题?
What is the problem with 'react-native-elements'?
当我尝试在我的代码中使用 'react-native-elements' 包时,我遇到了这个错误:
bundling failed: Error: Unable to resolve module react-native-vector-icons/FontAwesome
from node_modules\react-native-elements\src\social\SocialIcon.js
: react-native-vector-icons/FontAwesome could not be found within the project.
我做了很多事情来修复它。我再次安装了 'react-native-vector-icons',我使用了 'rm ./node_modules/react-native/local-cli/core/fixtures/files/package.json',但没有一个有效。我应该怎么做才能克服这个问题?我真的很感谢你们的帮助。
确保你已经安装了这个包
npm install react-native-vector-icons 和 link 它通过
react-native link react-native-vector-icons
然后对于 ios,您需要安装 pod(转到终端上的项目 ios 文件夹并输入命令 pod install)
然后使用 react-native start --reset-cache
重置打包程序缓存
如果您使用的 React 版本 <0.60,请使用 react-native link react-native-vector-icons
并执行步骤 link,如果 React 版本 > 0.60,则 cd ios && pod install && cd ..
并重试,如果它不起作用,请删除构建文件夹并再次重建。
当我尝试在我的代码中使用 'react-native-elements' 包时,我遇到了这个错误:
bundling failed: Error: Unable to resolve module
react-native-vector-icons/FontAwesome
fromnode_modules\react-native-elements\src\social\SocialIcon.js
: react-native-vector-icons/FontAwesome could not be found within the project.
我做了很多事情来修复它。我再次安装了 'react-native-vector-icons',我使用了 'rm ./node_modules/react-native/local-cli/core/fixtures/files/package.json',但没有一个有效。我应该怎么做才能克服这个问题?我真的很感谢你们的帮助。
确保你已经安装了这个包 npm install react-native-vector-icons 和 link 它通过
react-native link react-native-vector-icons
然后对于 ios,您需要安装 pod(转到终端上的项目 ios 文件夹并输入命令 pod install)
然后使用 react-native start --reset-cache
重置打包程序缓存如果您使用的 React 版本 <0.60,请使用 react-native link react-native-vector-icons
并执行步骤 link,如果 React 版本 > 0.60,则 cd ios && pod install && cd ..
并重试,如果它不起作用,请删除构建文件夹并再次重建。