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() {
  super.didStopUserGesture();
  _navigation?.add(
    NavigationBehavior(
      type: NavigationBehaviorType.didStopUserGesture,
      route: null,
      previousRoute: null,
    ),
  );
}