SemanticsSlider constructor

const SemanticsSlider({
  1. Key? key,
  2. required Widget child,
  3. required double value,
  4. String? label,
  5. String? tooltip,
  6. double adjustmentUnit = 0.1,
  7. ValueChanged<double>? onChanged,
  8. Map<String, String>? properties,
  9. bool testOnly = false,
})

Implementation

const SemanticsSlider({
  super.key,
  required this.child,
  required this.value,
  this.label,
  this.tooltip,
  this.adjustmentUnit = 0.1,
  this.onChanged,
  this.properties,
  this.testOnly = false,
});