Disable page transitions in Ionic 2 RC.0

How to disable transitions for all pages in ionic 2?
ionic 2 NavController allows you to do this in a specific way like this

nextPage() { this.navCtrl.push(HomePage, {}, {animate: false}) } 

but how can I turn off all transitions for all pages around the world?

+5
source share
1 answer

To disable animation for all of your navigation, go to the app.module.ts file and add animate to the configuration: false

Same:

  IonicModule.forRoot(App, { animate: false }) 
+8
source

Source: https://habr.com/ru/post/1257618/


All Articles