FlutterAdvanceSlider constructor

const FlutterAdvanceSlider({
  1. Key? key,
  2. required double min,
  3. required double max,
  4. bool showLable = true,
  5. int divderCount = 5,
  6. bool displayDivders = true,
  7. Icon? customIcon,
  8. bool showCustomThumb = true,
  9. Color activeTrackColor = Colors.blue,
  10. Color inactiveTrackColor = const Color.fromARGB(255, 207, 207, 207),
  11. 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);