mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
21 lines
426 B
HTML
21 lines
426 B
HTML
<ion-toolbar>
|
|
<ion-title>Refresher</ion-title>
|
|
</ion-toolbar>
|
|
|
|
|
|
<ion-content>
|
|
<ion-refresher (refresh)="doRefresh($event)" (pulling)="doPulling($event)">
|
|
<ion-refresher-content
|
|
pullingText="Pull to refresh..."
|
|
refreshingText="Refreshing...">
|
|
</ion-refresher-content>
|
|
</ion-refresher>
|
|
|
|
<ion-list>
|
|
<ion-item *ngFor="#item of items">
|
|
{{ item }}
|
|
</ion-item>
|
|
</ion-list>
|
|
|
|
</ion-content>
|