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...
@AbhayVarshney If you are using expo/CRNA then you need to import then Ionicons . somewhat like async componentWillMount() { await Expo.Font.loadAsync({ 'Roboto': require('native-base/Fonts/Roboto.ttf'), 'Roboto_medium': require('native-base/Fonts/Roboto_medium.ttf'), 'Ionicons': requir...