Ion-view animation

Hi , is there any way to remove animation in ion-views ?
Thanks for the Reply .

<ion-view > </ion-view>
1 Like

Between views you mean ?

http://ionicframework.com/docs/api/directive/navTransition/
http://ionicframework.com/docs/api/directive/navDirection/

Nope inside the ion-view tag

<ion-view animation="no animation> </ion-view>

just like that code, but this code is not working.

Wow , I just figured it out ! Thanks for the Link @abellion

I Try to put nav-transition=“none” inside the Ion-view , This solved my problem , Thanks

<ion-view nav-transition="none"> </ion-view>

Super ! If you want it for the whole app, you can define it via the config provider : http://ionicframework.com/docs/api/provider/$ionicConfigProvider/#views.transition

2 Likes

Thanks So much ! :smiley: