Ionic 2 - Multiple menu at the same time (right - left)

前端 未结 1 795
感动是毒
感动是毒 2021-02-14 07:40

THE SITUATION:

I have a working right menu in my Ionic 2 app. I need to add a left menu. I have tried but was unsuccessfull so far. This is my attempt:<

1条回答
  •  清酒与你
    2021-02-14 08:24

    Just like you can see here, you need to add side="left" and side="right" like this:

    ...
    

    And

    ...
    

    EDIT:

    Thanks @johnnyfittizio for your comments! I've made the changes you mentioned there (please edit this answer if I forgot something).

    So basically we just need to add both menus (for instance, in the app.html page) like this:

    
      
        
          
        
      
    
    
    
      
        
          
        
      
    
    
    
    
    
    

    Then we need to add both menu buttons in the header like this:

    
      
        
        
          HomePage
        
        
      
    
    
    
      

    Home page

    Please notice that each button has the menuToggle="left" or menuToggle="right" property to be able to toggle the proper menu.

    0 讨论(0)
提交回复
热议问题