Add ComboBox widget

- Widget implementation
- Widget helper
- Example
This commit is contained in:
Joao Freitas 2023-07-13 13:51:29 +01:00 committed by Héctor Ramón Jiménez
parent 4cf1b4fd1c
commit dd5ef8b908
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
6 changed files with 907 additions and 0 deletions

View file

@ -27,6 +27,7 @@ mod row;
pub mod button;
pub mod checkbox;
pub mod combo_box;
pub mod container;
pub mod overlay;
pub mod pane_grid;
@ -63,6 +64,8 @@ pub use checkbox::Checkbox;
#[doc(no_inline)]
pub use column::Column;
#[doc(no_inline)]
pub use combo_box::ComboBox;
#[doc(no_inline)]
pub use container::Container;
#[doc(no_inline)]
pub use mouse_area::MouseArea;