I was installing a package in my react-native application (to be specific it was createMaterialTopTabNavigator from react-navigation) but after the installation succeed, so
Images issue is seen in Xcode12 builds and the fix if you are not running latest react-native version or not planning to upgrade to latest version of react-native, then go to
node_modules > react-native > Libraries > Images > RCTUIImageViewAnimated.m search for
if (_currentFrame)
add the following else block to the if block as below
if (_currentFrame) {
layer.contentsScale = self.animatedImageScale;
layer.contents = (__bridge id)_currentFrame.CGImage;
} else {
[super displayLayer:layer];
}
Ref : https://github.com/facebook/react-native/issues/29279#issuecomment-658244428