AtomicRangeSlider constructor
const
AtomicRangeSlider({
- Key? key,
- required RangeValues values,
- required ValueChanged<
RangeValues> ? onChanged, - ValueChanged<
RangeValues> ? onChangeStart, - ValueChanged<
RangeValues> ? onChangeEnd, - double min = 0.0,
- double max = 1.0,
- int? divisions,
- RangeLabels? labels,
- bool enabled = true,
- Color? activeColor,
- Color? inactiveColor,
- Color? thumbColor,
- double? thumbRadius,
- String? helperText,
- String? errorText,
- EdgeInsetsGeometry? margin,
Implementation
const AtomicRangeSlider({
super.key,
required this.values,
required this.onChanged,
this.onChangeStart,
this.onChangeEnd,
this.min = 0.0,
this.max = 1.0,
this.divisions,
this.labels,
this.enabled = true,
this.activeColor,
this.inactiveColor,
this.thumbColor,
this.thumbRadius,
this.helperText,
this.errorText,
this.margin,
});