2020-07-10 02:39:12 +02:00
|
|
|
//! Display a dropdown list of selectable values.
|
2021-10-14 16:07:22 +07:00
|
|
|
use crate::Renderer;
|
2021-09-20 15:09:55 +07:00
|
|
|
|
2020-07-10 02:50:47 +02:00
|
|
|
pub use iced_native::pick_list::State;
|
|
|
|
|
pub use iced_style::pick_list::{Style, StyleSheet};
|
2020-06-11 20:41:11 +02:00
|
|
|
|
|
|
|
|
/// A widget allowing the selection of a single value from a list of options.
|
2020-07-10 02:50:47 +02:00
|
|
|
pub type PickList<'a, T, Message, Backend> =
|
|
|
|
|
iced_native::PickList<'a, T, Message, Renderer<Backend>>;
|