Progressbars

This commit is contained in:
Paulo Pinto
2020-08-28 11:45:50 +01:00
parent 0480d28caa
commit ab6fc2df8d
7 changed files with 19 additions and 9 deletions
+1
View File
@@ -17,6 +17,7 @@
</ion-toolbar>
</ion-header>
<ion-content>
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
<ion-refresher-content
pullingIcon="chevron-down-circle-outline"
+4 -2
View File
@@ -34,7 +34,7 @@ export class AgendaPage implements OnInit {
eventsListPessoal: Event[];
eventsListOficial: Event[];
showLoader: boolean = true;
showLoader: boolean;
startTime: Date;
endTime: Date;
@@ -112,6 +112,7 @@ export class AgendaPage implements OnInit {
});
this.loading();
});
this.showLoader = false;
}
);
break;
@@ -132,6 +133,7 @@ export class AgendaPage implements OnInit {
});
this.loading();
});
this.showLoader = false;
}
);
break;
@@ -152,11 +154,11 @@ export class AgendaPage implements OnInit {
});
this.loading();
});
this.showLoader = false;
}
);
break;
}
this.showLoader = false;
}
RefreshEvents(ev: { startTime: Date, endTime: Date }){