Unrecognized Font Family on React Native

前端 未结 2 2122
迷失自我
迷失自我 2021-02-11 02:08

I\'m running into a peculiar error using React Native. Inside my button.js I am doing

import Icon from \"react-native-vector-icons/MaterialIcons\";         


        
2条回答
  •  我寻月下人不归
    2021-02-11 02:17

    The same issue was fixed after triggering loadFont() method

    import Icon from 'react-native-vector-icons/FontAwesome';
    
    Icon.loadFont();
    

提交回复
热议问题