Pop TabsPage and push LoginPage?

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.

18 Likes