custom_cupertino_page_route 0.0.1
custom_cupertino_page_route: ^0.0.1 copied to clipboard
A CupertinoPageRoute which can disable swipe back gesture.
A CupertinoPageRoute
which can disable swipe back gesture.
Usage #
Navigator.push(
context,
CustomCupertinoPageRoute(
builder: (BuildContext context) {
return HomePage();
},
isPopGestureEnabled: false,
),
);