NiceRangeSlider constructor
const
NiceRangeSlider({ - Key? key,
- required RangeValues value,
- required ValueChanged<RangeValues> onChanged,
- double min = 0,
- double max = 100,
- int? divisions,
- String? label,
- bool enabled = true,
- bool showLabels = true,
- String formatLabel(
- double value
)?,
})
Implementation
const NiceRangeSlider({
super.key,
required this.value,
required this.onChanged,
this.min = 0,
this.max = 100,
this.divisions,
this.label,
this.enabled = true,
this.showLabels = true,
this.formatLabel,
});