getPreferredSize abstract method
- required SliderThemeData sliderTheme,
- bool isEnabled,
Returns the preferred size of the shape.
It is used to help position the tick marks within the slider.
The sliderTheme
argument is the theme assigned to the RangeSlider that
this shape belongs to.
The isEnabled
argument is false when RangeSlider.onChanged is null and
true otherwise. When true, the slider will respond to input.
Implementation
Size getPreferredSize({
required SliderThemeData sliderTheme,
bool isEnabled,
});