So…in my app after successfull user login i have given this
this.navCtrl.push(HomePage);
This works perfectly in my browser , but when i run the app in my android device the header part which contained the menu button does not have the button instead it becomes a back button to navigate into previous page. And swipe to view the menu is also not available.
Is it because in the login ts file i have given this to disable menu.
ionViewDidLoad() {
console.log('ionViewDidLoad LoginPage');
this.menu.swipeEnable(false, 'sidemenu');
}
Some quick help will be much appreciated. And note that this is working perfectly in the browser