I have a side menu, and I want the nav icon to always be present in my view.
Currently it’s there on my first page but as soon as I navigate to another page via the side-menu it disappears, then requiring a page refresh to actually show. Same behavior in regular Chrome, Ripple, and on iPhone (except on device I can’t refresh to ever get it to show). The view changes are working properly, the only issue is that the navigation button disappears after a view change until I refresh the page.
I can make it work with a back button but that’s not the behavior I want.
How can I get the ion-nav-buttons button to always be present?
<ion-nav-buttons side="primary">
<button class="button button-icon ion-navicon" menu-toggle="left">
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-nav-view name="menuContent"></ion-nav-view>
</ion-side-menu-content>
<ion-side-menu side="left">
<ion-header-bar class="bar-stable">
<h1 class="title">Lunch!</h1>
</ion-header-bar>
<ion-content ng-controller="menuController">
<ion-list>
<ion-item nav-clear menu-close ng-click="navHome()">
Home
</ion-item>
<ion-item nav-clear menu-close ng-click="navBrowse()">
Browse
</ion-item>
<ion-item nav-clear menu-close ng-click="navCreate()">
Create
</ion-item>
<ion-item nav-clear menu-close ng-click="navSettings()">
Settings
</ion-item>
</ion-list>
</ion-content>
</ion-side-menu>
</ion-side-menus>