Getting Tabs header in home page, after coming out from Tabs page

Answer for my problem is in above link.

Instead of using this.navCtrl.setRoot(PagePage);, use this.appCtrl.getRootNav().setRoot(PagePage);

import { App } from 'ionic-angular';
export class RechargePage{
constructor(public appCtrl: App) {}

GoBack(){
this.appCtrl.getRootNav().setRoot(PagePage);
}
}

Thanks for all those who helped to solve…

1 Like