Rename ComboBox to PickList
This commit is contained in:
parent
2118a726f8
commit
73b8ae8e5e
17 changed files with 80 additions and 80 deletions
|
|
@ -1,9 +0,0 @@
|
|||
//! Display a dropdown list of selectable values.
|
||||
pub use iced_native::combo_box::State;
|
||||
|
||||
pub use iced_graphics::combo_box::{Style, StyleSheet};
|
||||
pub use iced_graphics::overlay::menu::Style as Menu;
|
||||
|
||||
/// A widget allowing the selection of a single value from a list of options.
|
||||
pub type ComboBox<'a, T, Message> =
|
||||
iced_native::ComboBox<'a, T, Message, crate::Renderer>;
|
||||
9
glow/src/widget/pick_list.rs
Normal file
9
glow/src/widget/pick_list.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
//! Display a dropdown list of selectable values.
|
||||
pub use iced_native::pick_list::State;
|
||||
|
||||
pub use iced_graphics::overlay::menu::Style as Menu;
|
||||
pub use iced_graphics::pick_list::{Style, StyleSheet};
|
||||
|
||||
/// A widget allowing the selection of a single value from a list of options.
|
||||
pub type PickList<'a, T, Message> =
|
||||
iced_native::PickList<'a, T, Message, crate::Renderer>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue