1 2 3 4 5 6 7 8 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>;