SfRangeSliderThemeData constructor

const SfRangeSliderThemeData({
  1. double activeTrackHeight = 6.0,
  2. double inactiveTrackHeight = 4.0,
  3. Size? tickSize,
  4. Size? minorTickSize,
  5. Offset? tickOffset,
  6. Offset? labelOffset,
  7. TextStyle? inactiveLabelStyle,
  8. TextStyle? activeLabelStyle,
  9. TextStyle? tooltipTextStyle,
  10. Color? inactiveTrackColor,
  11. Color? activeTrackColor,
  12. Color? thumbColor,
  13. Color? activeTickColor,
  14. Color? inactiveTickColor,
  15. Color? disabledActiveTickColor,
  16. Color? disabledInactiveTickColor,
  17. Color? activeMinorTickColor,
  18. Color? inactiveMinorTickColor,
  19. Color? disabledActiveMinorTickColor,
  20. Color? disabledInactiveMinorTickColor,
  21. Color? overlayColor,
  22. Color? inactiveDividerColor,
  23. Color? activeDividerColor,
  24. Color? disabledActiveTrackColor,
  25. Color? disabledInactiveTrackColor,
  26. Color? disabledActiveDividerColor,
  27. Color? disabledInactiveDividerColor,
  28. Color? disabledThumbColor,
  29. Color? tooltipBackgroundColor,
  30. Color? overlappingTooltipStrokeColor,
  31. Color? thumbStrokeColor,
  32. Color? overlappingThumbStrokeColor,
  33. Color? activeDividerStrokeColor,
  34. Color? inactiveDividerStrokeColor,
  35. double? trackCornerRadius,
  36. double overlayRadius = 24.0,
  37. double thumbRadius = 10.0,
  38. double? activeDividerRadius,
  39. double? inactiveDividerRadius,
  40. double? thumbStrokeWidth,
  41. double? activeDividerStrokeWidth,
  42. double? inactiveDividerStrokeWidth,
})

Creating an argument constructor of SfRangeSliderThemeData class.

Implementation

const SfRangeSliderThemeData({
  super.activeTrackHeight,
  super.inactiveTrackHeight,
  super.tickSize,
  super.minorTickSize,
  super.tickOffset,
  super.labelOffset,
  super.inactiveLabelStyle,
  super.activeLabelStyle,
  super.tooltipTextStyle,
  super.inactiveTrackColor,
  super.activeTrackColor,
  super.thumbColor,
  super.activeTickColor,
  super.inactiveTickColor,
  super.disabledActiveTickColor,
  super.disabledInactiveTickColor,
  super.activeMinorTickColor,
  super.inactiveMinorTickColor,
  super.disabledActiveMinorTickColor,
  super.disabledInactiveMinorTickColor,
  super.overlayColor,
  super.inactiveDividerColor,
  super.activeDividerColor,
  super.disabledActiveTrackColor,
  super.disabledInactiveTrackColor,
  super.disabledActiveDividerColor,
  super.disabledInactiveDividerColor,
  super.disabledThumbColor,
  super.tooltipBackgroundColor,
  this.overlappingTooltipStrokeColor,
  super.thumbStrokeColor,
  this.overlappingThumbStrokeColor,
  super.activeDividerStrokeColor,
  super.inactiveDividerStrokeColor,
  super.trackCornerRadius,
  super.overlayRadius,
  super.thumbRadius,
  super.activeDividerRadius,
  super.inactiveDividerRadius,
  super.thumbStrokeWidth,
  super.activeDividerStrokeWidth,
  super.inactiveDividerStrokeWidth,
});