AtomicSlider constructor

const AtomicSlider({
  1. Key? key,
  2. required double value,
  3. required ValueChanged<double>? onChanged,
  4. ValueChanged<double>? onChangeStart,
  5. ValueChanged<double>? onChangeEnd,
  6. double min = 0.0,
  7. double max = 1.0,
  8. int? divisions,
  9. String? label,
  10. String? semanticFormatterCallback,
  11. bool enabled = true,
  12. Color? activeColor,
  13. Color? inactiveColor,
  14. Color? thumbColor,
  15. double? thumbRadius,
  16. String? helperText,
  17. String? errorText,
  18. 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,
});