ExtendedScrollbar constructor

const ExtendedScrollbar({
  1. Key? key,
  2. required Widget child,
  3. ScrollController? controller,
  4. bool? isAlwaysShown,
  5. bool? trackVisibility,
  6. bool? showTrackOnHover,
  7. double? hoverThickness,
  8. double? thickness,
  9. Radius? radius,
  10. bool? interactive,
  11. ScrollNotificationPredicate? notificationPredicate,
  12. ScrollbarOrientation? scrollbarOrientation,
  13. MaterialStateProperty<Color?>? thumbColor,
  14. MaterialStateProperty<Color?>? trackColor,
  15. MaterialStateProperty<Color?>? trackBorderColor,
  16. double? crossAxisMargin,
  17. double? mainAxisMargin,
  18. double? minThumbLength,
  19. EdgeInsets? extraMargin,
})

Implementation

const ExtendedScrollbar({
  Key? key,
  required this.child,
  this.controller,
  this.isAlwaysShown,
  this.trackVisibility,
  this.showTrackOnHover,
  this.hoverThickness,
  this.thickness,
  this.radius,
  this.interactive,
  this.notificationPredicate,
  this.scrollbarOrientation,
  this.thumbColor,
  this.trackColor,
  this.trackBorderColor,
  this.crossAxisMargin,
  this.mainAxisMargin,
  this.minThumbLength,
  this.extraMargin,
}) : super(key: key);