FlutterAdvanceSlider constructor
const
FlutterAdvanceSlider({
- Key? key,
- required double min,
- required double max,
- bool showLable = true,
- int divderCount = 5,
- bool displayDivders = true,
- Icon? customIcon,
- bool showCustomThumb = true,
- Color activeTrackColor = Colors.blue,
- Color inactiveTrackColor = const Color.fromARGB(255, 207, 207, 207),
- ValueChanged<
double> onChanged = _defaultOnChanged,
Implementation
const FlutterAdvanceSlider({
Key? key,
required this.min,
required this.max,
this.showLable = true,
this.divderCount = 5,
this.displayDivders = true,
this.customIcon,
this.showCustomThumb = true,
this.activeTrackColor = Colors.blue,
this.inactiveTrackColor = const Color.fromARGB(255, 207, 207, 207),
this.onChanged = _defaultOnChanged,
}) : super(key: key);