TSlider constructor

const TSlider({
  1. Key? key,
  2. required double value,
  3. required ValueChanged<double> onChanged,
  4. Color? activeColor,
  5. Color? inactiveColor,
  6. Color? thumbInnerColor,
  7. Color? thumbOuterColor,
})

Implementation

const TSlider({
  super.key,
  required this.value,
  required this.onChanged,
  this.activeColor,
  this.inactiveColor,
  this.thumbInnerColor,
  this.thumbOuterColor,
});