Draft ComboBox and Menu layer
This commit is contained in:
parent
b1afadf1a2
commit
afd9274de2
22 changed files with 966 additions and 150 deletions
|
|
@ -2,7 +2,7 @@
|
|||
//!
|
||||
//! [`glow`]: https://github.com/grovesNL/glow
|
||||
//! [`iced_native`]: https://github.com/hecrj/iced/tree/master/native
|
||||
#![deny(missing_docs)]
|
||||
//#![deny(missing_docs)]
|
||||
#![deny(missing_debug_implementations)]
|
||||
#![deny(unused_results)]
|
||||
#![forbid(rust_2018_idioms)]
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ use crate::Renderer;
|
|||
|
||||
pub mod button;
|
||||
pub mod checkbox;
|
||||
pub mod combo_box;
|
||||
pub mod container;
|
||||
pub mod pane_grid;
|
||||
pub mod progress_bar;
|
||||
|
|
@ -24,6 +25,8 @@ pub use button::Button;
|
|||
#[doc(no_inline)]
|
||||
pub use checkbox::Checkbox;
|
||||
#[doc(no_inline)]
|
||||
pub use combo_box::ComboBox;
|
||||
#[doc(no_inline)]
|
||||
pub use container::Container;
|
||||
#[doc(no_inline)]
|
||||
pub use pane_grid::PaneGrid;
|
||||
|
|
|
|||
3
glow/src/widget/combo_box.rs
Normal file
3
glow/src/widget/combo_box.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
pub use iced_native::combo_box::State;
|
||||
|
||||
pub type ComboBox<'a, T, Message> = iced_native::ComboBox<'a, T, Message>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue