3

我可以在同一屏幕上导入 react-native-vector-icons/font-awesome 和 react-native-vector-icons/Ionicons 吗?基本上我想在同一屏幕上同时使用 font-awesome 和 Ionicons 图标来获取不同的图标?

Example-
import ActionButton from 'react-native-action-button';
import Icon from 'react-native-vector-icons/font-awesome';
import Icon from 'react-native-vector-icons/Ionicons';
4

1 回答 1

4

是的你可以。因为 FontAwesome 和 Ionicons 作为默认值导出,所以您可以使用任何名称导入它们,就像这样

import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome';
import IonIcon from 'react-native-vector-icons/Ionicons';

并在您的render()方法中使用

<FontAwesomeIcon name="github" size={16} color="red">
<IonIcon name="github" size={16} color="blue">
于 2017-11-23T13:03:28.500 回答