I implemented the pull to refresh:
<ion-view title="Details">
<ion-content>
<ion-refresher pulling-text="Pull to refresh..." on-refresh="doRefresh()">
</ion-refresher>
<div class="card" >
<div class="item item-body">
</div>
</div>
</ion-content>
</ion-view>
It’s working fine but the rendering seems weird to me. I don’t know if it’s the correct behavior but the pulling-text
is not completly hidden by default. Is it on purpose?