buildOverscrollIndicator method

  1. @override
Widget buildOverscrollIndicator(
  1. BuildContext context,
  2. Widget child,
  3. ScrollableDetails details
)
override

Applies a GlowingOverscrollIndicator to the child widget on TargetPlatform.android and TargetPlatform.fuchsia.

Implementation

@override
Widget buildOverscrollIndicator(BuildContext context, Widget child, ScrollableDetails details) {
  // No overscroll indicator.
  // When modifying this function, consider modifying the implementation in
  // the base class as well.
  return child;
}