no_shadow_scroll_behavior.dart 764 B

12345678910111213141516171819202122232425
  1. import 'package:flutter/material.dart';
  2. class NoShadowScrollBehavior extends ScrollBehavior {
  3. @override
  4. Widget buildViewportChrome(BuildContext context, Widget child, AxisDirection axisDirection) {
  5. switch (getPlatform(context)) {
  6. case TargetPlatform.iOS:
  7. case TargetPlatform.macOS:
  8. return child;
  9. case TargetPlatform.android:
  10. case TargetPlatform.fuchsia:
  11. case TargetPlatform.linux:
  12. case TargetPlatform.windows:
  13. return GlowingOverscrollIndicator(
  14. child: child,
  15. //不显示头部水波纹
  16. showLeading: false,
  17. //不显示尾部水波纹
  18. showTrailing: false,
  19. axisDirection: axisDirection,
  20. color: Colors.transparent,
  21. );
  22. }
  23. }
  24. }