mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
22 lines
493 B
HTML
22 lines
493 B
HTML
<ion-toolbar><ion-title>Pull To Refresh</ion-title></ion-toolbar>
|
|
|
|
<ion-content>
|
|
|
|
<ion-refresher (start)="doStart($event)" (pulling)="doPulling($event)" (refresh)="doRefresh($event)">
|
|
|
|
<ion-refresher-content
|
|
pullingText="Pull to refresh..."
|
|
refreshingSpinner="bubbles"
|
|
refreshingText="Refreshing...">
|
|
</ion-refresher-content>
|
|
|
|
</ion-refresher>
|
|
|
|
<ion-list>
|
|
<ion-item *ngFor="let item of items">
|
|
{{ item }}
|
|
</ion-item>
|
|
</ion-list>
|
|
|
|
</ion-content>
|