useFContinuousSliderController function
FContinuousSliderController
useFContinuousSliderController({})
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,
),
);