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

I found the solution:

IonicModule.forRoot({animated: false});

has to be within imports in app.module.ts, e.g.

@NgModule({
  declarations: [AppComponent],
  entryComponents: [],
  imports: [BrowserModule, IonicModule.forRoot({animated: false}), AppRoutingModule],
  providers: [
    StatusBar,
    SplashScreen,
    { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
  ],
  bootstrap: [AppComponent]
})
1 Like