@AlvoEd wrote:
how can i implement it in my project
This is myhome.html
<ion-refresher (ionRefresh)="doRefresh($event)"> <ion-refresher-content pullingIcon="arrow-dropdown" pullingText="Pull to refresh" refreshingSpinner="crescent" refreshingText="Refreshing..."> </ion-refresher-content> </ion-refresher>
This is the
home.ts
ionViewDidLoad() { this.tabBarElement.style.display = 'none'; setTimeout(() => { this.splash = false; this.tabBarElement.style.display = 'flex'; }, 4000); }
Posts: 1
Participants: 1