How can I choose a specific transition duration for a Cupertino Page Route navigation ?
Like when I navigate from one page to another I need the animation duration to take longer to show the flip effect.
How can I choose a specific transition duration for a Cupertino Page Route navigation ?
Like when I navigate from one page to another I need the animation duration to take longer to show the flip effect.
You should have something along the lines of
transitionDuration: Duration(seconds: 1)
. If not that exact property, there will be something else related toduration
.