SeekBar constructor

SeekBar({
  1. Key? key,
  2. double progressWidth = 2.5,
  3. double thumbRadius = 7.0,
  4. double value = 0.0,
  5. double secondValue = 0.0,
  6. Color barColor = Colors.green,
  7. Color progressColor = Colors.orange,
  8. Color secondProgressColor = Colors.orangeAccent,
  9. Color thumbColor = Colors.white,
  10. Function? onStartTrackingTouch,
  11. ValueChanged<double>? onProgressChanged,
  12. ValueChanged<double>? onStopTrackingTouch,
  13. Function? onTouchDown,
  14. Function? onTouchUp,
  15. bool secondCircleEnale = false,
})

Implementation

SeekBar({
  Key? key,
  this.progressWidth = 2.5,
  this.thumbRadius = 7.0,
  this.value = 0.0,
  this.secondValue = 0.0,
  this.barColor = Colors.green,
  this.progressColor = Colors.orange,
  this.secondProgressColor = Colors.orangeAccent,
  this.thumbColor = Colors.white,
  this.onStartTrackingTouch,
  this.onProgressChanged,
  this.onStopTrackingTouch,
  this.onTouchDown,
  this.onTouchUp,
  this.secondCircleEnale = false,
}) : super(key: key);