Angular 2 Material SideNav always open on desktp and normal on mobile

后端 未结 3 2075
面向向阳花
面向向阳花 2021-01-17 04:53

I made this simple side nav in angular 2 material. I want to keep oppened=\"true\" only for desktop and keep the default behavior for mobiles and laptops. This used to be pr

3条回答
  •  攒了一身酷
    2021-01-17 05:49

    You should be using disableClose property as below

     w = window.innerWidth;
          constructor(){
            if (this.w > 450) {
            this.disableClose=true;
          } else {
            this.disableClose=false;
          }
    

    HTML will be as

    
      
    Main content goes here
















    Manu bar

    LIVE DEMO

提交回复
热议问题