Question
Is there some way to have expandable item-option to go full width after expanding beyond the threshold (after threshold is when ionSwipe event is fired then)
Problem demo
Expandable bounces back to the left after drag end when it’s expected to go off-screen to the right and replaced by the red delete button.
Desired behavior
Trash is expandable here. Dragging the item left after a certain point, it will continue going left and replaced by the red trash button.
Code
<ion-item-sliding @slideInOut *ngFor="let bagItem of bag.bagItemsList">
<!-- SLIDING OPTION FOR DELETE -->
<ion-item-options side="start" (ionSwipe)="bag.remove(bagItem)">
<ion-item-option color="danger" (click)="bag.remove(bagItem)" expandable="true">DELETE</ion-item-option>
</ion-item-options>
<ion-item>
<!-- CONTENT -->
</ion-item>
</ion-item-sliding>