我正在尝试从 react-native-vector-icons/MaterialIcons 添加一个图标:
import Icon from 'react-native-vector-icons/MaterialIcons';
<View style={styles.picture}>
{ <Icon
name="add-circle"
onPress={() => alert("Add Picture")}
color="green"
/> }
</View>
但我得到:
console.error : "fontFamily "Material Icons" 不是系统字体,还没有通过 Font.loadAsync 加载
我尝试使用 Font.loadAsync
await Font.loadAsync({'MaterialIcons': require('@expo/vector-icons/fonts/MaterialIcons.ttf')})
有任何想法吗?