mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
29 lines
610 B
HTML
29 lines
610 B
HTML
<ion-header>
|
|
|
|
<ion-navbar>
|
|
<ion-title>Item Reorder</ion-title>
|
|
<ion-buttons end>
|
|
<button (click)="toggleEdit()">{{editButton}}</button>
|
|
</ion-buttons>
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
<ion-content fullscreen>
|
|
|
|
<ion-list class="chat-sliding-demo">
|
|
<ion-list-header>
|
|
Playlist
|
|
</ion-list-header>
|
|
|
|
<ion-item-group [reorder]="editing" (ionItemReorder)="reorderData($event)">
|
|
<ion-item *ngFor="let song of songs">
|
|
<h2>{{ song.title }}</h2>
|
|
<p>{{ song.band }} • {{ song.album }}</p>
|
|
</ion-item>
|
|
</ion-item-group>
|
|
</ion-list>
|
|
|
|
</ion-content>
|