Hi,
I’m sorry if I’m asking a stupid question, but I tried to understand and nothing until now.
Ionic v1 is Angular and Ionic v2 is what language?
indent preformatted text by 4 spaces import { LoadingController } from 'ionic-angular';
export class MyPage {
constructor(public loadingCtrl: LoadingController) {
}
presentLoading() {
let loader = this.loadingCtrl.create({
content: “Please wait…”,
duration: 3000
});
loader.present();
}
}
Which language is that? Because for me it’s a little different than Angular.
Other question, Can i still working with Ionic V1 version with angular or it’s already deprecated?
I’m trying to add a maps in my app and found in both ways.
Thanks in advance