Problem with NavController

Ionic is really good and awesome working experience

the problem is i am using the NavController to navigate to the pages

when the navcontroller navigates to the root page of my application the menu is not accessible in the root page [Home page] of my application

what could be the problem

please do help me resolve it

Just go to your HomePage.html.

On the navbar section of the html page, just add

 <ion-navbar>
  
    <button  menuToggle ion-button icon-only color="light">
      <ion-icon item-end name="menu"></ion-icon>
    </button> 

//just add the above button in your page navbar

    <ion-title> Title </ion-title>
  </ion-navbar>```

Thanks for the reply but its no working

i have tried your code