getScrollPhysics method

  1. @override
ScrollPhysics getScrollPhysics(
  1. BuildContext context
)
override

The scroll physics to use for the platform given by getPlatform.

Defaults to RangeMaintainingScrollPhysics mixed with BouncingScrollPhysics on iOS and ClampingScrollPhysics on Android.

Implementation

@override
ScrollPhysics getScrollPhysics(BuildContext context) {
  //...
  if (Platform.isIOS) {
    return const BouncingScrollPhysics(
      parent: AlwaysScrollableScrollPhysics(),
    );
  }
  return super.getScrollPhysics(context);
}