skip to Main Content

Feather – react-native-vector-icons – possible handled promise rejection (id:9) issue – React native

I have a react native application and in the application, I am trying to call Feather from react-native-vector-icons. When i make the call, I get the following error: [Unhandled promise rejection: Error: Directory for 'file:///Users/omarjandali/Library/Developer/CoreSimulator/Devices/B09B927C-6596-4403-B931-0C83395BA279/data/Containers/Data/Application/5F76B516-64FE-45C5-8F6D-FA6448DC62BB/Library/Caches/ExponentExperienceData/%2540ohmarj%252Fryppe/ExponentAsset-a76d309774d33d9856f650bed4292a23.ttf' doesn't exist. Please make sure…

VIEW QUESTION

REACT NATIVE QUESTION TypeError: undefined is not an object (evaluating 'navigation.navigate') …,

App.js (Login) import * as React from 'react'; import {useState} from 'react'; import { Text, StyleSheet, KeyboardAvoidingView, ScrollView, Image, TextInput, TouchableOpacity, View } from 'react-native'; import { CheckBox } from 'react-native-elements'; import {Ionicons} from '@expo/vector-icons' import {statusBar01} from './src/statusBar'; const…

VIEW QUESTION

MaterialCommunityIcons showing incorrect icon in react native bottom tab navigator

I'm following the guide from https://reactnavigation.org/docs/bottom-tab-navigator/ import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'; const Tab = createBottomTabNavigator(); function MyTabs() { return ( <Tab.Navigator initialRouteName="Feed" screenOptions={{ tabBarActiveTintColor: '#e91e63', }} > <Tab.Screen name="Feed" component={Feed} options={{ tabBarLabel: 'Home', tabBarIcon: ({…

VIEW QUESTION
Back To Top
Search