Hi all,
When I use in the .html:
<ion-card *ngFor="let user of users">
<img src="{{ user.field_image }}">
Then the image is on the html page.
There is also a {{ user.link }} but I have to put that in an In-app-browser within a ngoninit in the .ts file, what do I have to do to do that in the right way?:
ngOnInit(){
const browser = this.iab.create('user.link',{location:'no'});
}
I have to do more than this in the .ts file?