How to disable transitions for all pages in ionic 2 ?
ionic 2 NavController allows you to do it on a specific view like so
nextPage() {
this.navCtrl.push(HomePage, {}, {animate: false})
}
but how can I disable all transitions for all pages globally?
To disable animation for all your navigation go to your app.module.ts file and add to the config animate:false
Like so:
IonicModule.forRoot(App, { animate: false })
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With