LiveCupertinoSlider constructor

const LiveCupertinoSlider({
  1. Key? key,
  2. ValueCell<bool> enabled = const ValueCell.value(true),
  3. required MutableCell<double> value,
  4. void onChangeStart(
    1. double
    )?,
  5. void onChangeEnd(
    1. double
    )?,
  6. double min = 0.0,
  7. double max = 1.0,
  8. int? divisions,
  9. Color? activeColor,
  10. Color thumbColor = CupertinoColors.white,
})

Implementation

const LiveCupertinoSlider({
  super.key,
  this.enabled = const ValueCell.value(true),
  required this.value,
  this.onChangeStart,
  this.onChangeEnd,
  this.min = 0.0,
  this.max = 1.0,
  this.divisions,
  this.activeColor,
  this.thumbColor = CupertinoColors.white,
});