velocityTrackerBuilder method

GestureVelocityTrackerBuilder velocityTrackerBuilder(
  1. BuildContext context
)

Specifies the type of velocity tracker to use in the descendant Scrollables' drag gesture recognizers, for estimating the velocity of a drag gesture.

This can be used to, for example, apply different fling velocity estimation methods on different platforms, in order to match the platform's native behavior.

Typically, the provided GestureVelocityTrackerBuilder should return a fresh velocity tracker. If null is returned, Scrollable creates a new VelocityTracker to track the newly added pointer that may develop into a drag gesture.

The default implementation provides a new IOSScrollViewFlingVelocityTracker on iOS and macOS for each new pointer, and a new VelocityTracker on other platforms for each new pointer.

Implementation

GestureVelocityTrackerBuilder velocityTrackerBuilder(BuildContext context) {
  switch (getPlatform(context)) {
    case TargetPlatform.iOS:
      return (PointerEvent event) => IOSScrollViewFlingVelocityTracker(event.kind);
    case TargetPlatform.macOS:
      return (PointerEvent event) => MacOSScrollViewFlingVelocityTracker(event.kind);
    case TargetPlatform.android:
    case TargetPlatform.fuchsia:
    case TargetPlatform.linux:
    case TargetPlatform.windows:
      return (PointerEvent event) => VelocityTracker.withKind(event.kind);
  }
}