mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
19 lines
472 B
HTML
19 lines
472 B
HTML
<ion-toolbar><ion-title>Pull To Refresh</ion-title></ion-toolbar>
|
|
|
|
<ion-content>
|
|
<ion-refresher
|
|
(starting)="doStarting($event)"
|
|
(refresh)="doRefresh($event)"
|
|
(pulling)="doPulling($event)"
|
|
pullingIcon="heart"
|
|
pullingText="release to refresh..."
|
|
refreshingIcon="star"
|
|
refreshingText="refreshing...">
|
|
</ion-refresher>
|
|
<ion-list>
|
|
<ion-item *ngFor="#item of items">
|
|
Item {{ item.index }}
|
|
</ion-item>
|
|
</ion-list>
|
|
</ion-content>
|