angularionic-framework

How to disable page transition animation in Ionic 4 / Angular?


I’m using ‘routerLink’ to navigate to a new page and I was wondering how I could disable the page transition animation? I couldn’t find an answer to that simple question in the documentation or here (I only found answers to old versions of Ionic / Angular).

Could someone please point me to the right spot?


Solution

  • The parameter has changed from "animate" to "animated".

    ie. in app.module.ts, do the following

    IonicModule.forRoot({animated: false});