logo
1
2
3
4
5
6
7
8
9
10
11
//! Display a dropdown list of selectable values.
pub use iced_native::pick_list::State;

pub use iced_graphics::{
    overlay::menu::Style as Menu,
    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::support::iced::Renderer>;