'Is there a ready-made library that does this widget in the picture [closed]

Is there a ready-made library that does this widget in the picture?

enter image description here



Solution 1:[1]

There is the Slider class.

Slider(
  value: _currentSliderValue,
  max: 100,
  divisions: 5,
  label: _currentSliderValue.round().toString(),
  onChanged: (double value) {
    setState(() {
      _currentSliderValue = value;
    });

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Dani3le_