ArcaneRangeSlider constructor

const ArcaneRangeSlider({
  1. required double minValue,
  2. required double maxValue,
  3. double min = 0,
  4. double max = 100,
  5. double? step,
  6. String? label,
  7. bool showValues = true,
  8. SliderVariant variant = SliderVariant.primary,
  9. ComponentSize size = ComponentSize.md,
  10. bool disabled = false,
  11. void onChanged(
    1. double min,
    2. double max
    )?,
  12. Key? key,
})

Implementation

const ArcaneRangeSlider({
  required this.minValue,
  required this.maxValue,
  this.min = 0,
  this.max = 100,
  this.step,
  this.label,
  this.showValues = true,
  this.variant = SliderVariant.primary,
  this.size = ComponentSize.md,
  this.disabled = false,
  this.onChanged,
  super.key,
});