SliderRender constructor
const
SliderRender({
- required AnimationController animationController,
- required Color inactiveTrackColor,
- required Color activeTrackColor,
- required Color thumbColor,
- required double thumbSize,
- required double balloonWidth,
- required double value,
- required ValueChanged<
double> onChanged, - TextStyle? balloonTextStyle,
- Key? key,
Implementation
const SliderRender({
required this.animationController,
required this.inactiveTrackColor,
required this.activeTrackColor,
required this.thumbColor,
required this.thumbSize,
required this.balloonWidth,
required this.value,
required this.onChanged,
this.balloonTextStyle,
Key? key,
}) : super(key: key);