Hello everyone,
how do I align the arrow icon to the right of the list item.
That is what I mean:
That is my code:
<ion-content padding>
<ion-header>
{{description}}
</ion-header>
<ion-list no-lines>
<ion-item *ngFor="let subject of subjects">
{{subject.title}}
<ion-icon name="arrow-dropright"></ion-icon>
</ion-item>
</ion-list>
</ion-content>