In my attempt to utilize the recently added LoadingController in this scenario:
let loading=this.load.create({
content: "Connexion au serveur Migal en cours..."
});
loading.present();
this.http.get(this.urlCheckerForm.value.migalUrl+'/action/MobileApp/URLChecker')
.map(res => res.json())
.subscribe(
data => this.newConnection(data,loading),
error => this.catchURLError(loading));
loading.dismiss();
Essentially, I aim to showcase the loading pop-in prior to my page being loaded and dismiss it thereafter.
I attempted following the guide on Ionic 2 Documentation, but unfortunately, it does not seem to be effective...
UPDATE : The loading component fails to appear altogether.