I want to use the <ion-list><ion-item *ngFor="....">
pattern to generate a list of contact records. In the contact records would be little icons like “edit”, “map” (next to address), “phone” (next to phone#, to make a call), etc.
I like this pattern because it formats things nicely, has the separator, etc.
However, the <ion-item>
eats up all the clicks, so making things inside the item clickable is hard.
Should I be using just a <div>
instead of <ion-item>
, as the container for my records? And is there any value to embedding these <div>
inside an <ion-list>
container, or should <ion-list>
only be used with <ion-item>
?
I’m using the v6 beta, as this is a new app.