LiveSlider.adaptive constructor

const LiveSlider.adaptive({
  1. Key? key,
  2. ValueCell<bool> enabled,
  3. required MutableCell<double> value,
  4. double? secondaryTrackValue,
  5. void onChangeStart(
    1. double
    )?,
  6. void onChangeEnd(
    1. double
    )?,
  7. double min,
  8. double max,
  9. int? divisions,
  10. String? label,
  11. MouseCursor? mouseCursor,
  12. Color? activeColor,
  13. Color? inactiveColor,
  14. Color? secondaryActiveColor,
  15. Color? thumbColor,
  16. WidgetStateProperty<Color?>? overlayColor,
  17. String semanticFormatterCallback(
    1. double
    )?,
  18. FocusNode? focusNode,
  19. bool autofocus,
  20. SliderInteraction? allowedInteraction,
  21. bool? year2023,
})

Implementation

const factory LiveSlider.adaptive({
  Key? key,
  ValueCell<bool> enabled,
  required MutableCell<double> value,
  double? secondaryTrackValue,
  void Function(double)? onChangeStart,
  void Function(double)? onChangeEnd,
  double min,
  double max,
  int? divisions,
  String? label,
  MouseCursor? mouseCursor,
  Color? activeColor,
  Color? inactiveColor,
  Color? secondaryActiveColor,
  Color? thumbColor,
  WidgetStateProperty<Color?>? overlayColor,
  String Function(double)? semanticFormatterCallback,
  FocusNode? focusNode,
  bool autofocus,
  SliderInteraction? allowedInteraction,
  bool? year2023,
}) = _LiveSlider$adaptive;