Could you please help me figure out why the Me
button is not visible? I implemented the ItemSliding component.
Here is the link to the stackblitz project. The issue is within the home
folder.
I am trying to create a list like the one below:
UI
https://i.sstatic.net/jjOnD.png
.html
<ion-list>
<ion-item-sliding #item>
<ion-item>
<button ion-button class="buttoncls">Me</button>
<ion-label fixed>Members</ion-label>
</ion-item>
<ion-item-options side="right">
<button ion-button (click)="deleteMember(item)" color="danger">
<ion-icon name="ios-trash-outline"></ion-icon>
</button>
</ion-item-options>
</ion-item-sliding>
</ion-list>