feat(widget): add dropdown widget as pick_list replacement

The Dropdown widget is based on the PickList widget from iced.
This commit is contained in:
Michael Aaron Murphy 2023-10-23 16:57:37 +02:00 committed by Michael Murphy
parent dbd6c978ba
commit ca7c17ce21
9 changed files with 1121 additions and 15 deletions

View file

@ -6,6 +6,8 @@
mod button;
pub use self::button::Button;
mod dropdown;
pub mod iced;
pub use self::iced::Application;
pub use self::iced::Checkbox;