I have just started learning Ionic take a look at the code below , the problem is i want the ion-nav-bar with the icon to still be in the bar area when i click the “Go to team” button .
abstract html page :
<ion-nav-view name = "mainContent" animation = "slide-left-right"></ion-nav-view>
</ion-pane>
<ion-side-menu side="left">
<header class="bar bar-header bar-balanced">
<h1 class="title">Elite Schedule</ion-nav-title>
</header>
<ion-content class="has-header">
<ion-list>
<ion-item nav-clear menu-close ui-sref="app.teams">Home</ion-item>
<ion-item nav-clear menu-close ui-sref="app.teams">Teams</ion-item>
<ion-item nav-clear menu-close ui-sref="app.standings">Standings</ion-item>
<ion-item nav-clear menu-close ui-sref="app.locations">Locations</ion-item>
<ion-item nav-clear menu-close ui-sref="app.rules">Rules</ion-item>
</ion-list>
</ion-side-menu>
template where the button is :