FieldStyleRangeSlider constructor
FieldStyleRangeSlider({
- double min = 0.0,
- double max = 100.0,
- int? divisions,
- Color? activeColor,
- Color? inactiveColor,
- Color? thumbColor,
- Color? overlayColor,
- MouseCursor? mouseCursor,
- SemanticFormatterCallback? semanticFormatterCallback,
- bool showTitle = true,
- Widget? title,
- double titleSpacing = 8.0,
- bool showLabels = false,
- String labelFormatter(
- double value
- bool showValues = true,
- String valueFormatter() = _defaultValueFormatter,
- TextStyle? valueTextStyle,
- double valueSpacing = 8.0,
- bool enabled = true,
- double? headerSpacing = 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,
});