We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd6af7 commit 4fdaadbCopy full SHA for 4fdaadb
src/image/index.ios.ts
@@ -290,6 +290,9 @@ export class Img extends ImageBase {
290
291
private handleImageLoaded = (image: UIImage, error: NSError, cacheType: number) => {
292
this.isLoading = false;
293
+ if (!this.nativeViewProtected) {
294
+ return;
295
+ }
296
const animate = (this.alwaysFade || cacheType !== SDImageCacheType.Memory) && this.fadeDuration > 0;
297
if (image) {
298
this._setNativeImage(image, animate);
0 commit comments