Fonts and icons REACT NATIVE
Hello! I need your help with icons and fonts in React-Native. Fragment of programming code(when I tried to use Icons): __________________________________________________ import { AntDesign } from '@expo/vector-icons'; export const AddToDo = ({ onSubmit }) => { return <View style={styles.block}> <AntDesign.Button onPress={pressHandler} name='pluscircleo'> Add </AntDesign.Button> </View> ); } _______________________________________ And ERROR : fontFamily "anticon" is not a system font and has not been loaded through Font.loadAsync. - If you intended to use a system font, make sure you typed the name correctly and that it is supported by your device operating system. - If this is a custom font, be sure to load it with Font.loadAsync. ______________________________________________________________ The same history when I'm trying to use Fonts....