Unrecognized Font Family on React Native

前端 未结 2 2115
迷失自我
迷失自我 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();
    
    0 讨论(0)
  • 2021-02-11 02:20

    Make sure you have run the command:

    react-native link react-native-vector-icons

    0 讨论(0)
提交回复
热议问题