How to toggle Menu in Ionic 4

后端 未结 2 687
北恋
北恋 2020-12-31 03:44

I am new to Ionic, and I am developing a basic app in Ionic 4 with sidemenu.

I am adding a button in Side Menu, when I am clicking on t

2条回答
  •  离开以前
    2020-12-31 04:15

    Simply encapsulate your ion-button within an ion-menu-toggle element, like so:

    
      Toggle Menu
    
    

    View the documentation here

    EDIT: If you don't want to use ion-menu-toggle, you can do this instead:

    In your app.component.ts:

    import { MenuController } from '@ionic/angular'; //import MenuController to access toggle() method.
    
    @Component({
      selector: 'app-root',
      templateUrl: 'app.component.html'
    })
    export class AppComponent {
      constructor(
        public menuCtrl: MenuController
      ) {
        this.initializeApp();
      }
    
    toggleMenu() {
        this.menuCtrl.toggle(); //Add this method to your button click function
      }
    
    }
    

    And in your app.component.html:

    Toggle Menu
    

    To view all methods, check the docs here.

提交回复
热议问题