Я пытаюсь добавить иконку из Reaction-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')})
Есть идеи?