[SOLVED] How to change page transition for all routes?

As the documentation writes, is it possible to change the transition on some specific route as follow:

routes = [

{
path: ‘/some-page/’,
url: ‘…’,
options: {
transition: ‘f7-circle’,
},
},

]

how can I change page transition for all pages that are in the app, without write the option for each page?

You need to set same transition: 'f7-circle' parameter on View

1 Like

Please update it in the document

https://framework7.io/docs/view#custom-page-transitions

The below code only mention there

routes = [
  ...
  {
    path: '/some-page/',
    url: '...',
    options: {
      transition: 'f7-circle',
    },
  },
  ...
]