7.0.2 • Published 2 years ago

elm-widgets-alpha v7.0.2

Weekly downloads
-
License
MPL-2.0
Repository
-
Last release
2 years ago

elm-widgets

A collection of widgets themed trough ThemeSpec.

Alpha - This is the alpha version of ElmWidgets. This means this package will be updated faster but breakage is expected. A stable version is yet to be released as uncover-co/elm-widgets.

Setup

ElmWidgets is plug-and-play with whatever styling approach you prefer - elm-css, elm-ui, tailwind, you name it - just insert ElmWidgets globalStyles somewhere in your application html and use any widget directly.

import W.Button
import ThemeSpec


main : Html msg
main =
    div []
        [ ElmWidgets.globalStyles
        , ThemeSpec.globalProvider lightTheme
        , ...
            W.Button.view []
                { label = "Sir, would you please click me?"
                , onClick = ...
                }
        ]