ScrollbarThemeData constructor

const ScrollbarThemeData({
  1. double? thickness,
  2. double? hoveringThickness,
  3. bool? showTrackOnHover,
  4. bool? isAlwaysShown,
  5. Radius? radius,
  6. Color? thumbColor,
  7. Color? hoveringThumbColor,
  8. Color? draggingThumbColor,
  9. Color? trackColor,
  10. Color? hoveringTrackColor,
  11. Color? trackBorderColor,
  12. Color? hoveringTrackBorderColor,
  13. double? crossAxisMargin,
  14. double? mainAxisMargin,
  15. double? minThumbLength,
  16. bool? interactive,
})

Creates a theme that can be used for MacosThemeData.scrollbarTheme.

Implementation

const ScrollbarThemeData({
  this.thickness,
  this.hoveringThickness,
  this.showTrackOnHover,
  this.isAlwaysShown,
  this.radius,
  this.thumbColor,
  this.hoveringThumbColor,
  this.draggingThumbColor,
  this.trackColor,
  this.hoveringTrackColor,
  this.trackBorderColor,
  this.hoveringTrackBorderColor,
  this.crossAxisMargin,
  this.mainAxisMargin,
  this.minThumbLength,
  this.interactive,
});