A material design slider.

Used to select from a range of values.

A slider can be used to select from either a continuous or a discrete set of values. The default is use a continuous range of values from min to max. To use discrete values, use a non-null value for divisions, which indicates the number of discrete intervals. For example, if min is 0.0 and max is 50.0 and divisions is 5, then the slider can take on the values discrete values 0.0, 10.0, 20.0, 30.0, 40.0, and 50.0.

The slider itself does not maintain any state. Instead, when the state of the slider changes, the widget calls the onChanged callback. Most widgets that use a slider will listen for the onChanged callback and rebuild the slider with a new value to update the visual appearance of the slider.

Requires one of its ancestors to be a Material widget.

See also:

Inheritance

Constructors

Slider({Key key, @required double value, @required ValueChanged<double> onChanged, double min: 0.0, double max: 1.0, int divisions, String label, Color activeColor })

Creates a material design slider.

Properties

activeColor Color

The color to use for the portion of the slider that has been selected.

read-only
divisions int

The number of discrete divisions.

read-only
label String

A label to show above the slider when the slider is active.

read-only
max double

The maximum value the user can select.

read-only
min double

The minium value the user can select.

read-only
onChanged ValueChanged<double>

Called when the user selects a new value for the slider.

read-only
value double

The currently selected value for this slider.

read-only
hashCode int

Get a hash code for this object.

read-only, inherited
key Key

Controls how one widget replaces another widget in the tree.

read-only, inherited
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited

Operators

operator ==(other) bool

The equality operator.

inherited

Methods

createState() → _SliderState

Creates the mutable state for this widget at a given location in the tree.

createElement() StatefulElement

Creates a StatefulElement to manage this widget's location in the tree.

inherited
debugFillDescription(List<String> description) → void

Add additional information to the given description for use by toString.

inherited
noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
toString() String

Returns a string representation of this object.

inherited
toStringShort() String

A short, textual description of this widget.

inherited