How can I create a list item that allows swiping to reveal an archive
button?
The requirement is for the icon to appear to the left of the text.
I'm referring to the documentation on Button Layout: https://ionicframework.com/docs/api/components/item/ItemSliding/
<ion-item-options icon-start>
<button ion-button (click)="archive(item)">
<ion-icon name="archive"></ion-icon>
Archive
</button>
</ion-item-options>
Even after following the code snippet, the icon still overlaps the text. An example can be seen here: https://stackblitz.com/edit/ionic-fhhzdy?file=pages/home/home.html
What might I be overlooking in this setup?