Iced Widget Kit
Extra widgets for the Iced GUI library.
Each widget is controlled by a feature flag, so you can selectively enable only the ones you want to use.
Usage
Include iced-widget-kit as a dependency in your Cargo.toml:
[]
= "0.14.0"
= { = "0.1", = ["expander"] }
Versioning
iced-widget-kit version |
iced version |
|---|---|
| 0.1.x | 0.14 |
Widgets
Expander
A collapsible container widget that can expand or collapse in any direction to show or hide its content.
Only use this widget if you would like the animation it provides, otherwise use Iced's Column or Row.

Check out the Expander example.
Enable this widget with the feature expander.
SelectorBar
Provides single selection from a collection of items highlighted by an indicator.
Only use this widget if you would like the animation it provides, otherwise use a combination of Iced's other widgets.

Check out the SelectorBar example.
Enable this widget with the feature selector_bar.
Ribbon
A horizontal set of groups that adapt their appearance and arrangement when the ribbon is resized.

Check out the Ribbon example.
Enable this widget with the feature ribbon.