react-native-vector-icons 或 @expo/vector-icons 未在 Android 设备上呈现

问题描述

在我尚未弹出的博览会项目中,图标未在 android 上呈现。我使用 npm 安装了软件包。我的 cons 正在网络浏览器上呈现,但不在 android 上呈现。

npm i react-native-vector-icons

import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';

<MaterialCommunityIcons name="plus-Box" color={color} size={26} />

解决方法

虽然使用 react-native-vector-icons 没有大括号

 import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'

使用@expo/vector-icons

import { MaterialCommunityIcons } from '@expo/vector-icons';