确保组件名称以大写字母开头
Make sure to start component names with a capital letter
问题
我在使用 react-icons
尝试使用它时遇到错误:
在 header.js
我检查了未大写的第一个字母,但它们都是正确的:
<View style={styles.headerIcon}>
<TouchableOpacity onPress={openMenu} >
<MdMap />
</TouchableOpacity>
</View>
import
我试过的
Deleting react-icons
then re-installing it yarn add react-icons
--save.
Doing what the error says Make sure to start component names with capital letter
.
我试过的方法都没有用。
我已根据以下对我有用的答案修复了错误。
看来这个包不能在 react-native 中使用(组件包通常不能,除非它们指定与 RN 的兼容性),你应该考虑切换到类似 react-native-vector-icons.
的东西
问题
我在使用 react-icons
尝试使用它时遇到错误:
在 header.js
我检查了未大写的第一个字母,但它们都是正确的:
<View style={styles.headerIcon}>
<TouchableOpacity onPress={openMenu} >
<MdMap />
</TouchableOpacity>
</View>
import
我试过的
Deleting
react-icons
then re-installing ityarn add react-icons
--save.
Doing what the error says
Make sure to start component names with capital letter
.
我试过的方法都没有用。
我已根据以下对我有用的答案修复了错误。
看来这个包不能在 react-native 中使用(组件包通常不能,除非它们指定与 RN 的兼容性),你应该考虑切换到类似 react-native-vector-icons.
的东西