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