I am trying to combine data from two arrays, "subtitles" and "title", into an ion-list so that each ion-item displays a title on top of a subtitle. How can I achieve this?
In my .ts file:
items = [
'Email',
'Phone Number',
'Address',
'Cards'
];
data = [
"first last",
"test phone number",
"test address"
]
In my .html file
<ion-content padding>
<ion-list class="list">
<div *ngFor="let unit of data">
<button ion-item *ngFor="let item of items" (click)="enterPage(item)">
{{item}}
{{unit}}
</button>
</div>
</ion-list>
</ion-content>