nativescript-community / ui-image

Advanced and efficient image display plugin which uses Fresco (Android) and SDWebImage (iOS) to implement caching, placeholders, image effects, and much more.
Apache License 2.0
36 stars 9 forks source link

Failure image is not shown on Android #23

Open yvdv-one opened 4 years ago

yvdv-one commented 4 years ago

Which platform(s) does your issue occur on?

Please, provide the following version numbers that your issue occurs with:

Please, tell us how to recreate the issue in as much detail as possible.

The failure image is not shown on Android device. Uri's are set in a directive like this: this.image.placeholderImageUri = this.defaultsService.getDefaultImageFor(this.type); this.image.failureImageUri = this.defaultsService.getDefaultImageFor(this.type); this.image.src = this.src;

On failure, no image is shown.

The workaround I currently use is: this.image.on('failure', () => this.image.src = this.defaultsService.getDefaultImageFor(this.type));

But this should not be necessary.