customCanTransitionTo method

  1. @override
bool customCanTransitionTo(
  1. TransitionRoute nextRoute
)
override

Builds the can transition of the page.

Implementation

@override
bool customCanTransitionTo(TransitionRoute<dynamic> nextRoute) {
  if (performOutgoingAnimation) {
    return (nextRoute is FlutterRouteTransitionMixin &&
        !nextRoute.fullscreenDialog);
  }
  return false;
}