FieldStyleRangeSlider constructor

FieldStyleRangeSlider({
  1. double min = 0.0,
  2. double max = 100.0,
  3. int? divisions,
  4. Color? activeColor,
  5. Color? inactiveColor,
  6. Color? thumbColor,
  7. Color? overlayColor,
  8. MouseCursor? mouseCursor,
  9. SemanticFormatterCallback? semanticFormatterCallback,
  10. bool showTitle = true,
  11. Widget? title,
  12. double titleSpacing = 8.0,
  13. bool showLabels = false,
  14. String labelFormatter(
    1. double value
    ) = _defaultLabelFormatter,
  15. bool showValues = true,
  16. String valueFormatter(
    1. double start,
    2. double end
    ) = _defaultValueFormatter,
  17. TextStyle? valueTextStyle,
  18. double valueSpacing = 8.0,
  19. bool enabled = true,
  20. double? headerSpacing = 5.0,
  21. double? footerSpacing = 5.0,
})

Implementation

FieldStyleRangeSlider({
  this.min = 0.0,
  this.max = 100.0,
  this.divisions,
  this.activeColor,
  this.inactiveColor,
  this.thumbColor,
  this.overlayColor,
  this.mouseCursor,
  this.semanticFormatterCallback,
  this.showTitle = true,
  this.title,
  this.titleSpacing = 8.0,
  this.showLabels = false,
  this.labelFormatter = _defaultLabelFormatter,
  this.showValues = true,
  this.valueFormatter = _defaultValueFormatter,
  this.valueTextStyle,
  this.valueSpacing = 8.0,
  this.enabled = true,
  super.headerSpacing,
  super.footerSpacing,
});