chat_scroll_behavior.dart 562 B

12345678910111213141516171819202122
  1. import 'package:flutter/material.dart';
  2. class ChatScrollBehavior extends ScrollBehavior {
  3. final bool showLeading;
  4. final bool showTrailing;
  5. ChatScrollBehavior({
  6. this.showLeading = false,
  7. this.showTrailing = false,
  8. });
  9. @override
  10. Widget buildViewportChrome(BuildContext context, Widget child, AxisDirection axisDirection) {
  11. return GlowingOverscrollIndicator(
  12. showLeading: showLeading,
  13. showTrailing: showTrailing,
  14. child: child,
  15. axisDirection: axisDirection,
  16. color: Theme.of(context).primaryColor,
  17. );
  18. }
  19. }