You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removed Widget.ScrollingNav (Can still be found in the repos, but is no longer supported)
Removed Widget.Style.Template (Not needed for the new style types)
Rewritten all Style Types making them more descriptive.
Added Widget.Icon. We officially support all existing icon packages. See module for more information
Added Icon type: type alias Icon msg = { color : Color, size: Int } -> Element msg
Added complete implementation of the List widgets. Lists are composed of Items. Checkout the corresponding section in Widget for more information.
Added Modal type. Anything that needs a modal will now return a Modal type. A list of these modals can then be combined using Widget.singleModal or Widget.multiModal. Checkout the documentation for more information.
Renamed ExpansionPanel to ExpansionItem
Renamed modal to singleModal
Added AppBar and Sheet Widgets and removed Layout. The original code for the layout can now be found as an example in the repository.