Skip to content

Instantly share code, notes, and snippets.

@gokman
Created October 11, 2017 19:06
Show Gist options
  • Save gokman/a25bc6f9dda63af2113217b1dc92847b to your computer and use it in GitHub Desktop.
Save gokman/a25bc6f9dda63af2113217b1dc92847b to your computer and use it in GitHub Desktop.
ionic2 menuToggle with hardware back button
# add platform and menucontroller
# platform for hardware events
# menucontroller for menu events
import {Platform, MenuController} from "ionic-angular";
constructor( ...
public platform: Platform,
public menuCtrl: MenuController
...
) {
this.platform.registerBackButtonAction(()=>{
console.log('click back button and toggle menu');
this.menuCtrl.toggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment