Is page config possible in ionic2?

I want to set some specific transitions for specific pages. I wanted to set the config for @Page, but could not find an example. Any help would be appreciated.

So config is only meant to be set in @App, not on individual pages.
But if wanted to control the animation type, you can pass along additional option to nav.push.

this.nav.setPages([ {page: List}, {page: Detail} ], {
  animate: true
});

Though I would hold off on this for now. At least until animations have become stable and are fully documented on how to extend them.

1 Like