didStopUserGesture method

  1. @override
void didStopUserGesture()
override

User gesture is no longer controlling the Navigator.

Paired with an earlier call to didStartUserGesture.

Implementation

@override
void didStopUserGesture() {
  if (navigator!.userGestureInProgress) {
    return;
  }
}