I am using the menu drawer nested views and I want to disable the animations between pages/states
I tried
<ion-nav-view animation="no-animation" ></ion-nav-view>
but it does not work
I am using the menu drawer nested views and I want to disable the animations between pages/states
I tried
<ion-nav-view animation="no-animation" ></ion-nav-view>
but it does not work
<ion-nav-view animation="no-animation" ></ion-nav-view>
This works on me in disabling the animations between pages/states. You might not notice it because the ion-nav-bar [ header bar] was also animating.
To disable animation on ion-nav-bar just add the animation=“no-animation” attribute.
<ion-nav-bar class="bar-stable" animation="no-animation">
and don’t forget to remove animation class like “nav-title-slide-ios7”
All good now, thanks!