Post

Replies

Boosts

Views

Activity

Reply to No images when building with xCode 12 Beta
This fixed my issue ios 14.4 go to node_modules react-native Libraries Images RCTUIImageViewAnimated.m search for if (_currentFrame) then add [super: displayLayer:layer]; to the else statement. ex: if (_currentFrame) { layer.contentsScale = self.animatedImageScale; layer.contents = (__bridge id)_currentFrame.CGImage; } else { [super displayLayer:layer]; } I am using React native btw.
Mar ’21