You can use something like :
< ion-list reorder=“true” (ionItemReorder)=“reorderItems($event)” >
And reorderItems can use the reorderArray,
import {reorderArray} from ‘ionic-angular’;
and then just reorder using the following:
this.itemTree = reorderArray(this.itemTree, event);