handleThumbPressEndHorizontal method

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

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

Implementation

@override
void handleThumbPressEndHorizontal(Offset position, Velocity velocity) {
  super.handleThumbPressEndHorizontal(position, velocity);
  _dragIsActiveH = false;
  updateScrollbarPainter(false);
}