I added hide-nav-bar attribute expecting to hide the navigation bar on profile page. It removes the entire navigation bar along with buttons and title.
Profile.html
<ion-view view-title="Profile" hide-nav-bar="true">
<ion-content>
</ion-content>
<ion-footer-bar align-title="left" class="bar-balanced">
<a class="button-icon title" href="">
<i class="icon ion-ios-telephone-outline"></i>
</a>
</ion-footer-bar>
</ion-view>
Side-menu code snippet :
<ion-side-menu-content>
<ion-nav-bar class="bar-balanced">
<ion-nav-back-button>
</ion-nav-back-button>
<ion-nav-buttons side="left">
<button class="button button-icon button-clear ion-navicon" menu-toggle="left">
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-nav-view name="menuContent"></ion-nav-view>
</ion-side-menu-content>
Is there any CSS or Angular workaround for this?
I want to keep the nav-back-button and nav-buttons along with the view title. How do I do it?
I have researched into a few methods,but these need cordova plugin and are iOS specific like : http://ionicframework.jp/tutorials/fullscreen-apps/
and also
this: http://codepen.io/ciastek/pen/lxmyC
These don't serve my purpose. Please suggest an alternative like a css header bar-transparent or some $ionic delegate that works with angular to remove only the bar and not the buttons.