Hi everyone,
I’m getting this error when try to add NavController to app.component.ts:
There is my code (simplified):
[...]
import {NavController, Platform, Config, AlertController} from 'ionic-angular';
[...]
@Component({
template: `<ion-nav [root]="rootPage"></ion-nav>`
})
export class MyApp {
constructor(public navCtrl: NavController, [...] ){
platform.ready().then(() => {
[...]
if(platform.is('cordova')) {
// subscribe to push notifications
push.rx.notification().subscribe((push) => {
let alert = this.alertCtrl.create({
title: push.title,
subTitle: push.text,
buttons: [{
text: "OK",
handler: () => {
this.navCtrl.push(SomePage,{param: push.payload['player']});
}
}]
});
alert.present();
});
}
[...]
});
}
}
My system information:
Cordova CLI: 6.4.0
Ionic Framework Version: 2.0.0-rc.4
Ionic CLI Version: 2.1.17
Ionic App Lib Version: 2.1.7
Ionic App Scripts Version: 1.0.0
ios-deploy version: 1.9.0
ios-sim version: 5.0.11
OS: macOS Sierra
Node Version: v7.1.0
Xcode version: Xcode 8.2.1 Build version 8C1002
AlertController works fine, showing me the basic alert.
What I’m doing wrong?
Thanks.