I want to create ionic list having multiple text (like name ,address etc.) in each row please help me how it is possible
<ion-item *ngFor=“let groceries of groceries”>{{groceries}}
Hi, @apeksha07
For ionic list you need to try this:
<ion-list>
<ion-item *ngFor="let grocery of groceries">{{groceries}}</ion-item>
</ion-list>
hope it helps!!