summaryrefslogtreecommitdiffstats
path: root/wgpu/src/widget/combo_box.rs
blob: bfface298c74b79220a4c3896006733054782a2e (plain) (blame)
1
2
3
4
5
6
7
8
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>;