Hello I would like to be able tu use some view with side menu but inside the <ion-nav-view ></ion-nav-view>
.
More details:
I have my index.html with
<ion-nav-bar class="bar-positive" align-title="center">
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
<ion-nav-view ></ion-nav-view>
So all my views will takes benefit of navigation.
In my welcome.html I have something like that:
<ion-view view-title="Intro" hide-back-button="true">foo</ion-view>
In my view with sidemenu I have something like:
<ion-view hide-nav-bar="true">
<ion-side-menus>
<ion-side-menu-content >
<ion-header-bar class="bar bar-header bar-assertive">
<h1 class="title">Events</h1>
</ion-header-bar>
<ion-content>
blabla
</ion-content>
</ion-side-menu-content>
<!-- Left menu -->
<ion-side-menu side="left">
<ion-header-bar class="bar-stable">
<h1 class="title">Left</h1>
</ion-header-bar>
<ion-content>
blabla
</ion-content>
</ion-side-menu>
</ion-side-menus>
<!--</ion-content>-->
Everything works but in the event.html I don’t have any animation when transition occurs from welcome to event.html for example. Also navigation is not possible, I cannot have back button on event.html. It looks like my solution works but break the navigation system. So I bet I’m not doing it right.
My problem is similar to How does navigation work with side menu but there are no satisfying responses unfortunatly