AppRangeSlider constructor
const
AppRangeSlider({
- Key? key,
- required RangeValues values,
- required ValueChanged<
RangeValues> ? onChanged, - double min = 0.0,
- double max = 100.0,
- int? divisions,
- String? labelText,
- bool enabled = true,
- Color? activeColor,
- Color? inactiveColor,
- Color? thumbColor,
- Color? overlayColor,
- TextStyle? labelStyle,
- TextStyle? valueStyle,
Creates a range slider.
Implementation
const AppRangeSlider({
super.key,
required this.values,
required this.onChanged,
this.min = 0.0,
this.max = 100.0,
this.divisions,
this.labelText,
this.enabled = true,
this.activeColor,
this.inactiveColor,
this.thumbColor,
this.overlayColor,
this.labelStyle,
this.valueStyle,
});