I’d like to navigate to a page without any animation. Similar to tabs but without using tabs
The only way I’m aware of doing this is system wide - by not adding animation to your nav-view
:
This:
<ion-nav-view name="main"></ion-nav-view>
Versus:
<ion-nav-view name="main" animation="slide-left-right"></ion-nav-view>
Anyone know how to do this on a one-off basis?
I’ve been setting up my main ion-nav-view to have to have the animation.
<ion-nav-view animation="slide-left-right"></ion-nav-view>
Then for subsequent nested views where I don’t want any animation
<ion-nav-view animation="none"></ion-nav-view>
1 Like