I\'ve added Linux Biolinum fonts (http://www.dafont.com/linux-biolinum.font, LinBiolinum_R.ttf, LinBiolinum_RB.ttf) to my React Native project. Android version is OK. But on
In App.js file just import the missing font family and load the font as below
import Feather from 'react-native-vector-icons/Feather'
Feather.loadFont();
You can find these fonts in your project folder
Path - Project->node-modules-react-native-vector-icons->Fonts
Check this tested and works fine
Hope this helps!!