Solution:
Podfile:
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
info.plist
<key>UIAppFonts</key>
<array>
<string>FontAwesome.ttf</string>
<string>MaterialIcons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>your custom fonts</string>
</array>
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)