@HamdySdiri wrote:
I am trying to dimiss from th loadingCtrl when the data is empty
This is my example:
constructor(
private loadingCtrl: LoadingController,
) {this.recapServiceProvider.getRecap(this.loginServiceProvider.getToken()) .subscribe( data => { loading.dismiss(); }); let loading = this.presentLoadingDefault();}
When the data is empty, the loading still running.
How can I dismiss the loading when the data is empty
Posts: 5
Participants: 2