I'm also facing this issue on android device only In IOS device it's working fine.So I use expo-image, like Image as ExpoImage and give the width and height and the issue resolved.Below is the example: import {Image as ExpoImage} from 'expo-image';
<ExpoImage
source={require('../../assets/images/user.png')}
style={{width: 50, height: 50}} contentFit="contain" />
You can adjust width and height according to your view and style.