isPopGestureInProgress method
True if an iOS-style back swipe pop gesture is currently
underway for route
.
This just check the route's NavigatorState.userGestureInProgress.
See also:
popGestureEnabled
, which returns true if a user-triggered pop gesture would be allowed.
Implementation
bool isPopGestureInProgress() {
return widget.route.navigator!.userGestureInProgress;
}