9 lines
389 B
Rust
9 lines
389 B
Rust
//! Display a dropdown list of selectable values.
|
|
pub use iced_native::widget::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::widget::PickList<'a, T, Message, crate::Renderer>;
|