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:
parent
dbd6c978ba
commit
ca7c17ce21
9 changed files with 1121 additions and 15 deletions
|
|
@ -12,7 +12,6 @@ pub use iced::widget::{image, Image};
|
|||
pub use iced::widget::{lazy, Lazy};
|
||||
pub use iced::widget::{mouse_area, MouseArea};
|
||||
pub use iced::widget::{pane_grid, PaneGrid};
|
||||
pub use iced::widget::{pick_list, PickList};
|
||||
pub use iced::widget::{progress_bar, ProgressBar};
|
||||
pub use iced::widget::{radio, Radio};
|
||||
pub use iced::widget::{responsive, Responsive};
|
||||
|
|
@ -106,6 +105,9 @@ pub mod divider {
|
|||
}
|
||||
}
|
||||
|
||||
pub mod dropdown;
|
||||
pub use dropdown::{dropdown, Dropdown};
|
||||
|
||||
pub mod flex_row;
|
||||
pub use flex_row::{flex_row, FlexRow};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue