ui-image icon indicating copy to clipboard operation
ui-image copied to clipboard

Failure image is not shown on Android

Open yvdv-one opened this issue 6 years ago • 0 comments

Which platform(s) does your issue occur on?

  • Android/Angular

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

  • nativescript-image 3.0.0

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.

yvdv-one avatar Dec 12 '19 09:12 yvdv-one