DEV Community

jeancatarina
jeancatarina

Posted on

Error: Unrecognized font family Material Design icons

Solution:

Podfile:

pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
Enter fullscreen mode Exit fullscreen mode

info.plist

<key>UIAppFonts</key>
<array>
    <string>FontAwesome.ttf</string> 
    <string>MaterialIcons.ttf</string> 
    <string>MaterialCommunityIcons.ttf</string> 

    <string>your custom fonts</string>
</array>
Enter fullscreen mode Exit fullscreen mode

react-native unlink react-native-vector-icons
npm uninstall react-native-vector-icons
react-native install react-native-vector-icons

cd ios && pod install && pod update
npm i
yarn ios

Top comments (0)