diff options
Diffstat (limited to 'wgpu/src/widget')
-rw-r--r-- | wgpu/src/widget/combo_box.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wgpu/src/widget/combo_box.rs b/wgpu/src/widget/combo_box.rs new file mode 100644 index 00000000..bfface29 --- /dev/null +++ b/wgpu/src/widget/combo_box.rs @@ -0,0 +1,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>; |