showDividers property
Option to render the dividers on the track.
It is a shape which is used to represent the major interval points of the track.
For example, if min is 0.0 and max is 10.0 and interval is 2.0, the slider will render the dividers at 0.0, 2.0, 4.0 and so on.
Defaults to false
.
This snippet shows how to show dividers in SfSlider.
double _value = 4.0;
SfSlider(
min: 0.0,
max: 10.0,
value: _value,
interval: 2,
showDividers: true,
onChanged: (dynamic newValue) {
setState(() {
_value = newValue;
});
},
)
See also:
- showTicks, to render major ticks at given interval.
- showLabels, to render labels at given interval.
- dividerShape and SfSliderThemeData for customizing the divider’s visual appearance.
Implementation
final bool showDividers;