I am trying to show an Image using tag but the Image is not showing the url is working and there is no warning or error telling if I am doing something wrong My code is
<ion-img style="height: 101px;width: 33vw;" src="{{product.images[0].img}}" class="thumbnail-image" (click)="selectedArticle(product)" ></ion-img>
And I am getting the image url in Base64 src like this
data:image/png;base64,iVBORw0K
I don't know if ion-image supports this url or not.
Any help would be appreciated.