CellCupertinoSlider constructor
const
CellCupertinoSlider({
- Key? key,
- ValueCell<
bool> enabled = const ValueCell.value(true), - required MutableCell<
double> value, - ValueCell<
void Function(double)?> ? onChangeStart, - ValueCell<
void Function(double)?> ? onChangeEnd, - ValueCell<
double> min = const ValueCell.value(0.0), - ValueCell<
double> max = const ValueCell.value(1.0), - ValueCell<
int?> ? divisions, - ValueCell<
Color?> ? activeColor, - ValueCell<
Color> thumbColor = const ValueCell.value(CupertinoColors.white),
Implementation
const CellCupertinoSlider({
super.key,
this.enabled = const ValueCell.value(true),
required this.value,
this.onChangeStart,
this.onChangeEnd,
this.min = const ValueCell.value(0.0),
this.max = const ValueCell.value(1.0),
this.divisions,
this.activeColor,
this.thumbColor = const ValueCell.value(CupertinoColors.white),
});