InputSlider class
Provides a slider to select a value with type double between a given minimum and a given maximum.
- Inheritance
- Object
- InputField<
double> - InputSlider
Constructors
-
InputSlider({Key key, Color activeColor, bool autofocus = false, bool autosave, bool autovalidate, int divisions, InputDecoration decoration, bool enabled, FocusNode focusNode, Color inactiveColor, double initialValue, String label, Map<
String, dynamic> map, double min = 0.0, double max = 100.0, ValueChanged<double> onChanged, dynamic onChangeStart(double), dynamic onChangeEnd(double), ValueSetter<double> onSaved, String path, String semanticFormatterCallback(double), List<InputValidator> validators, bool wantKeepAlive = false})
Properties
- activeColor → Color
-
final
- autofocus → bool
-
final
- autosave → bool
-
Automatically saves a changed value.
If autovalidate is
true
then a changed value will only be saved if there is no validation failure. Also invokes method onSaved. Default istrue
.final, inherited - autovalidate → bool
-
Automatically validates any change and updates error text accordingly.
Default is
false
.final, inherited - decoration → InputDecoration
-
Decoration for the input field supplying frame, label, error text, ...
final, inherited
- divisions → int
-
final
- enabled → bool
-
Whether the field accepts user input.
Default is
true
.final, inherited - focusNode → FocusNode
-
final
- hashCode → int
-
The hash code for this object. [...]
@nonVirtual, read-only, inherited
- inactiveColor → Color
-
final
- initialValue → double
-
The fields value will initially be set to this
initialValue
.final, inherited - key → Key
-
Controls how one widget replaces another widget in the tree. [...]
final, inherited
- label → String
-
final
-
map
→ Map<
String, dynamic> -
map is used together with path to provide the initial value from
and to save changes to the map. This parameter supersedes parameter
map given to an InputForm ancestor.
final, inherited
- max → double
-
final
- min → double
-
final
-
onChanged
→ ValueSetter<
double> -
An optional method to call on every change of the fields value.
final, inherited
- onChangeEnd → dynamic Function(double)
-
final
- onChangeStart → dynamic Function(double)
-
final
-
onSaved
→ ValueSetter<
double> -
An optional method to call with the final value when the form is saved
through InputFormState.save().
final, inherited
- path → String
-
The path to the fields value in map.
If the form is nested then path elements must be dot separated.
final, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- semanticFormatterCallback → String Function(double)
-
final
-
validators
→ List<
InputValidator> -
Methods that validate an input.
The first failed validation will return an error string and no more
validations will happen. [...]
final, inherited
- wantKeepAlive → bool
-
true
will keep the state of all input fields within the sameSlider
even when the widget is scrolled out of view.final, inherited
Methods
-
createElement(
) → StatefulElement -
Creates a
StatefulElement
to manage this widget's location in the tree. [...]inherited -
createState(
) → _InputSliderState -
Creates the mutable state for this widget at a given location in the tree. [...]
override
-
debugDescribeChildren(
) → List< DiagnosticsNode> -
Returns a list of
DiagnosticsNode
objects describing this node's children. [...]@protected, inherited -
debugFillProperties(
DiagnosticPropertiesBuilder properties) → void -
Add additional properties associated with the node. [...]
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toDiagnosticsNode(
{String name, DiagnosticsTreeStyle style}) → DiagnosticsNode -
Returns a debug representation of the object that is used by debugging
tools and by
DiagnosticsNode.toStringDeep
. [...]inherited -
toString(
{DiagnosticLevel minLevel = DiagnosticLevel.info}) → String -
Returns a string representation of this object.
inherited
-
toStringDeep(
{String prefixLineOne = '', String prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a string representation of this node and its descendants. [...]
inherited
-
toStringShallow(
{String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a one-line detailed description of the object. [...]
inherited
-
toStringShort(
) → String -
A short, textual description of this widget.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
@nonVirtual, inherited