FContinuousSliderController constructor
FContinuousSliderController({
- required FSliderSelection selection,
- double stepPercentage = 0.05,
- bool tooltips = true,
- FSliderInteraction allowedInteraction = FSliderInteraction.tapAndSlideThumb,
- bool minExtendable = false,
Creates a FContinuousSliderController for selecting a single value.
Implementation
FContinuousSliderController({
required super.selection,
this.stepPercentage = 0.05,
super.tooltips = true,
super.allowedInteraction,
super.minExtendable,
}) : assert(0 <= stepPercentage && stepPercentage <= 1, 'stepPercentage must be between 0 and 1, inclusive.');