handleThumbPressEndHorizontal method

  1. @protected
  2. @mustCallSuper
void handleThumbPressEndHorizontal(
  1. Offset position,
  2. Velocity velocity
)

Handler called when a long press on horizontal scrollbar has ended.

Implementation

@protected
@mustCallSuper
void handleThumbPressEndHorizontal(Offset position, Velocity velocity) {
  _thumbDraggingH = false;
  _maybeStartFadeoutTimer(vertical: false);
  _startDragScrollbarAxisOffsetH = null;
  _lastDragUpdateOffsetH = null;
  _startDragThumbOffsetH = null;
}