import { App } from ‘ionic-angular’;
import this where ur logout function is.
constructor(public appCtrl: App){}
add to contraller .
logout() {
this.appCtrl.getRootNav().setRoot(LoginPage);
}
use this and it will work.
import { App } from ‘ionic-angular’;
import this where ur logout function is.
constructor(public appCtrl: App){}
add to contraller .
logout() {
this.appCtrl.getRootNav().setRoot(LoginPage);
}
use this and it will work.