skip to Main Content

React native – Error in Expo App – FetchError: request to https://api.expo.dev/v2/sdks/51.0.0/native-modules failed, reason: unable to get local issuer certificate

I am trying to start a new react native expo app by executing npx expo start but it throws following error FetchError: request to https://api.expo.dev/v2/sdks/51.0.0/native-modules failed, reason: unable to get local issuer certificate FetchError: request to https://api.expo.dev/v2/sdks/51.0.0/native-modules failed, reason: unable…

VIEW QUESTION

Image is not loading in expo react native

<Image source={{ uri: 'correct-url-of-my-image', headers: { Accept: 'image/*' } }} style={{ width: 400, height: 140 }} contentFit="contain" className="z-10" onLoadStart={() => { console.log('Image loading started'); }} onError={e => { console.log('Image loading failed', e); }} onLoadEnd={() => { console.log('Image loading ended'); }}…

VIEW QUESTION
Back To Top
Search