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?
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 })
Source: https://habr.com/ru/post/1257618/More articles:EF Core: Scaffold DbContext continues to crash - c #Calling a member function of a function () in boolean in CakePHP - phpShort way to set date ngbDatepicker - angularError starting project in Android Studio - androidThe global case of using variables - global-variablesAmazon Alexa - How to create a shared slot - alexa-skills-kitPrivacy issues with MFMailComposeViewController and only iOS 10 - objective-cindexOf is not a function - javascriptDoes Angular 2 support the Ahead of the Time SEST compiler style sheets? - angularhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1257623/send-a-csv-file-from-ember-js-to-rails-using-ajax&usg=ALkJrhgWW8aUuSiRpOmofh8j2FK2P_bd6wAll Articles