>Make sure you install both react-native-vector-icons and react-native-elements
>Go to node_modules
>Look for "react-native-vector-icons" folder
>Copy the "Fonts" folder
>>>For ANDROID, navigate to
android>app>src>main>assets
Then paste the "Fonts" folder...note you may need to rename it here as "fonts"
>>>For IOS, navigate to
ios>projectname
Then paste the "Fonts" folder
Additionally, navigate to ios>projectname/Info.plist
Then copy and paste this somewhere below the <dict> tag
<key>UIAppFonts</key>
<array>
<string>AntDesign.ttf</string>
<string>Entypo.ttf</string>
<string>EvilIcons.ttf</string>
<string>Feather.ttf</string>
<string>FontAwesome.ttf</string>
<string>FontAwesome5_Brands.ttf</string>
<string>FontAwesome5_Regular.ttf</string>
<string>FontAwesome5_Solid.ttf</string>
<string>Fontisto.ttf</string>
<string>Foundation.ttf</string>
<string>Ionicons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>MaterialIcons.ttf</string>
<string>Octicons.ttf</string>
<string>SimpleLineIcons.ttf</string>
<string>Zocial.ttf</string>
</array>
>>>Note: you may need to navigate to ios from your terminal and run pod install...
run cd ios
pod install
Now close the program and run it again...you're good to go