Quantcast
Channel: Active questions tagged react-native+ios - Stack Overflow
Viewing all articles
Browse latest Browse all 16959

Blank images React Native ios simulator

$
0
0

I'm using RN 0.61.5, after updating to latest version of XCode (12.0) faced with next problem - on iOS simulator (iOS 13.5, iOS 14.0) all images (local and loaded over http/https) are blank. Here is example of using local images

const source = require('../Assets/Images/Images/logo/logo_white.png');<Image style={styles.image} width={90} height={90} source={source} />

and images loaded over https

<Image style={styles.image} width={90} height={90} source={{uri: 'https://reactjs.org/logo-og.png'}} />

I can see all images with inspector, it's show blank image with width and height

Can anyone help me with this issue?


Viewing all articles
Browse latest Browse all 16959

Trending Articles