:orphan: .. _slider: ====================================== slider ====================================== How to write by SpWML ======================== .. code-block:: none (slider) ---- Summary =============== A block that can place a slider without child blocks. It has a variable with parameters equivalent to Flutter `Slider class `__ . To use this type, it is necessary to set `ValueManager `__ to SpWMLBuilder or SpWML widget. With this type, the manager always stores the value associated with the SID. ---- Dart Class Reference ====================== `SliderElement class `__ ---- SpWML Parameters ==================== * :ref:`The common` parameters. * min (double). Slider minimum value. If no value is set in the manager class, this value will be used as the initial value of the slider. * max (double). Slider maximum value. * label (String?). Specifies a label on the slider. If not set, the current slider value is automatically assigned as the label by default. * activeColor (String). Specifies the color below the current value of the slider. :ref:`The color system` . * inactiveColor (String). Specifies the color of the portion above the current value of the slider. :ref:`The color system` . * divisions (int). Specifies the number of division points for the slider. * useAutoLabel (bool). If true, show the current value on the slider. * isIntValue (bool). If true, the value of the label displayed when useAutoLabel is enabled is cast to an integer before being displayed.