TermosFloatingSlider constructor

const TermosFloatingSlider({
  1. Key? key,
  2. required double value,
  3. required double min,
  4. required double max,
  5. required ValueChanged<double> onChanged,
  6. int? divisions,
  7. bool compact = true,
  8. String formatValue(
    1. double value
    )?,
  9. String? minLabel,
  10. String? maxLabel,
})

Implementation

const TermosFloatingSlider({
  super.key,
  required this.value,
  required this.min,
  required this.max,
  required this.onChanged,
  this.divisions,
  this.compact = true,
  this.formatValue,
  this.minLabel,
  this.maxLabel,
});