Search code examples
ionic-frameworkionic2ionic-view

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 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?


Solution

  • 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 })