The markup is this:
<ion-list>
<button ion-item (click)="detailPage(post);" *ngFor="let post of posts" text-wrap>
<ion-thumbnail item-left>
<img [src]="post.thumbnail" *ngIf="post.thumbnail">
</ion-thumbnail>
<h2 [innerHTML]="post.title"></h2>
<h3 [innerHTML]="post.author.name"></h3>
<div [innerHTML]="post.date"></div>
<button clear item-right>
<ion-icon name="arrow-forward"></ion-icon>
</button>
</button>
</ion-list>
Why is iOS showing two arrows? Do I have to target the platform explicitly?
By the way, I have no idea how it shows on actual iOS device, whether the arrows are double or not.