从 'react-native-vector-icons/Ionicons' 导入图标
import Icon from 'react-native-vector-icons/Ionicons'
我可以在同一屏幕上导入 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';
是的,你可以。因为 FontAwesome 和 Ionicons 是默认导出的,所以你可以用任何名称导入它们,就像这样
import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome';
import IonIcon from 'react-native-vector-icons/Ionicons';
并在您的 render()
方法中使用 like
<FontAwesomeIcon name="github" size={16} color="red">
<IonIcon name="github" size={16} color="blue">
我可以在同一屏幕上导入 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';
是的,你可以。因为 FontAwesome 和 Ionicons 是默认导出的,所以你可以用任何名称导入它们,就像这样
import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome';
import IonIcon from 'react-native-vector-icons/Ionicons';
并在您的 render()
方法中使用 like
<FontAwesomeIcon name="github" size={16} color="red">
<IonIcon name="github" size={16} color="blue">