export interface State {} 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/I...
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 ️ ...