| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /**
- * 矢量图标库全局引用
- * @邠心vbe on 2021/4/7
- */
- import AntDesign from 'react-native-vector-icons/AntDesign';
- import Entypo from 'react-native-vector-icons/Entypo';
- import EvilIcons from 'react-native-vector-icons/EvilIcons';
- import Feather from 'react-native-vector-icons/Feather';
- import FontAwesome from 'react-native-vector-icons/FontAwesome';
- import FontAwesome5 from 'react-native-vector-icons/FontAwesome5';
- import FontAwesome5Brands from 'react-native-vector-icons/FontAwesome5Pro';
- import FontAwesome6 from 'react-native-vector-icons/FontAwesome6';
- import Fontisto from 'react-native-vector-icons/Fontisto';
- import Foundation from 'react-native-vector-icons/Foundation';
- import Ionicons from 'react-native-vector-icons/Ionicons';
- import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
- import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
- import Octicons from 'react-native-vector-icons/Octicons';
- import SimpleLineIcons from 'react-native-vector-icons/SimpleLineIcons';
- import Zocial from 'react-native-vector-icons/Zocial';
- global.AntDesign = AntDesign;
- global.Entypo = Entypo;
- global.EvilIcons = EvilIcons;
- global.Feather = Feather;
- global.FontAwesome = FontAwesome;
- global.FontAwesome5 = FontAwesome5;
- //global.FontAwesome5Brands = FontAwesome5Brands;
- global.FontAwesome6 = FontAwesome6;
- global.Fontisto = Fontisto;
- //global.Foundation = Foundation;
- global.Ionicons = Ionicons;
- global.MaterialCommunityIcons = MaterialCommunityIcons;
- global.MaterialIcons = MaterialIcons;
- global.Octicons = Octicons;
- //global.SimpleLineIcons = SimpleLineIcons;
- global.Zocial = Zocial;
|