Native上无法识别的字体系列

Native上无法识别的字体系列

本文介绍了React Native上无法识别的字体系列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在使用React Native时遇到了一个特殊的错误.在我的button.js内部,正在

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";
const icon = (Icon name="menu size={20} color="green"/>);
render()
    return(
         {icon}
    )

但是我得到了错误

Unrecognized Font Family 'Material Icons'

但是,当我将FontAwesome导入为:

However when I import FontAwesome as:

import Icon from "react-native-vector-icons/FontAwesome";

我没有错误.

推荐答案

触发loadFont()方法

import Icon from 'react-native-vector-icons/FontAwesome';

Icon.loadFont();

这篇关于React Native上无法识别的字体系列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 10:31