I have this list:
<ion-list inset="false" lines="full">
<ion-item *ngFor="let item of detail">
<ion-label>
<h3>{{item.QUANTITY}} x {{item.DESCRIPTION}}</h3>
</ion-label>
<ion-note>{{getItemSubTotal(item)}}</ion-note>
</ion-item>
</ion-list>
and it looks perfectly on the browser:
but when I build and install the app on my Android emulator, it looks like this:
Any ideas about why the difference ??
1 post - 1 participant