isInversed property

bool isInversed
final

Option to inverse the slider.

Defaults to false.

This snippet shows how to inverse the SfSlider.

double _value = 4.0;

SfSlider.vertical(
  min: 0.0,
  max: 10.0,
  value: _value,
  interval: 1,
  isInversed = true,
  onChanged: (dynamic newValue) {
    setState(() {
      _value = newValue;
    });
   },
)

Implementation

final bool isInversed;