Skip to content

Instantly share code, notes, and snippets.

@nazrdogan
Created April 4, 2018 14:46
Show Gist options
  • Save nazrdogan/d3c13b883f88b3a8097a7f9753a13387 to your computer and use it in GitHub Desktop.
Save nazrdogan/d3c13b883f88b3a8097a7f9753a13387 to your computer and use it in GitHub Desktop.
import { MenuController } from 'ionic-angular';
constructor(....... ........ .......... .......,private menu : MenuController)
ionViewDidEnter() {
// the root left menu should be disabled on this page
this.menu.enable(false);
}
ionViewWillLeave() {
// enable the root left menu when leaving this page
this.menu.enable(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment