useFContinuousSliderController function

FContinuousSliderController useFContinuousSliderController({
  1. required FSliderSelection selection,
  2. FSliderInteraction allowedInteraction = FSliderInteraction.tapAndSlideThumb,
  3. double stepPercentage = 0.05,
  4. bool tooltips = true,
  5. bool minExtendable = false,
  6. List<Object?>? keys,
})

Creates a FContinuousSliderController that represents a continuous value and is automatically disposed.

Implementation

FContinuousSliderController useFContinuousSliderController({
  required FSliderSelection selection,
  FSliderInteraction allowedInteraction = FSliderInteraction.tapAndSlideThumb,
  double stepPercentage = 0.05,
  bool tooltips = true,
  bool minExtendable = false,
  List<Object?>? keys,
}) => use(
  _ContinuousControllerHook(
    selection: selection,
    stepPercentage: stepPercentage,
    tooltips: tooltips,
    allowedInteraction: allowedInteraction,
    minExtendable: minExtendable,
    keys: keys,
  ),
);