I am developing a simple ionic v4 application, and I have created this simple ionic reordering list:
<ion-list>
<ion-reorder-group (ionItemReorder)="reorderItems($event)" disabled="false">
<ion-item *ngFor="let item of items">
<ion-label>
{{item}}
</ion-label>
<ion-reorder slot="end"></ion-reorder>
</ion-item>
</ion-reorder-group>
</ion-list>
Is there a way to show horizontally the items inside the list instead of the typical vertical style, manteining the reordering feature?