Is it possible to replicate this navigation bar transition effect using Cupertino Widgets?
I may not be using the widgets correctly.
And looking at some examples, I have not found any that shows exactly this effect.
If you want to have a slide transition like iOS
, you use CupertinoPageRoute
:
CupertinoPageRoute.
Navigator.push(
context, CupertinoPageRoute(builder: (context) => Screen2()))
further you can see CupertinoPageRoute
There is also a widget known as PageView you can check. Maybe that would help