mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
22 lines
485 B
HTML
22 lines
485 B
HTML
<ion-toolbar primary>
|
|
<ion-title>Reorder items</ion-title>
|
|
<ion-buttons end>
|
|
<button (click)="toggle()">
|
|
Edit
|
|
</button>
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
|
|
<ion-content>
|
|
|
|
<ion-list [reorder]="isReordering" (ionItemReorder)="reorder($event)">
|
|
<ion-item *ngFor="let item of items"
|
|
[style.background]="'rgb('+(255-item*4)+','+(255-item*4)+','+(255-item*4)+')'"
|
|
[style.height]="item*2+35+'px'">
|
|
{{item}}
|
|
</ion-item>
|
|
</ion-list>
|
|
|
|
</ion-content>
|
|
|