Orasund / elm-ui-framework / Framework.Slider

This module exposes simple attibutes for sliders and styling for the thumb.

Input.slider Slider.simple
    { onChange = ChangedSlider
    , label = Input.labelLeft Input.label <| Element.text "Slider.simple"
    , min = 0
    , max = 100
    , value = 42
    , thumb = Input.thumb Slider.thumb
    , step = Nothing
    }

simple : List (Element.Attribute msg)

A simple slider

withSteps : Basics.Int -> List (Element.Attribute msg)

A slider for integers. the first argument denotes the amount of possible values (max - min)

thumb : List (Element.Attribute Basics.Never)

The styling for a round thumb