问无法识别的字体系列'ionicons‘expo +原生库EN前几个星期,点开了RN的技能树,废话不多说,那我就...
What worked for me was uninstalling the @expo/vector-icons package recommended by Native-base Getting Started guide, and installing the react-native-vector-icons as a dependency. npm install react-native-vector-icons --save react-native link react-native-vector-icons 👍18🎉5 ️2...
export default function(stores) { return class Setup extends React.Component<Props, State> { constructor() { super(); this.state = { readyFlag: false, }; } async componentWillMount() { await Expo.Font.loadAsync({ 'Ionicons': require('@expo/vector-icons/fonts/Ionicons.ttf'), }); this...