diff options
author | 2019-11-10 01:55:32 +0100 | |
---|---|---|
committer | 2019-11-10 01:55:32 +0100 | |
commit | 2303111e09d806ef2a652bddc2b73be6dccf6ae2 (patch) | |
tree | ba57c5a2fe67d8a58d4f9b32c2b32fee32932f06 /native/src/lib.rs | |
parent | 839e039dbf2fb89dcb8c141503740777d2af2eb3 (diff) | |
download | iced-2303111e09d806ef2a652bddc2b73be6dccf6ae2.tar.gz iced-2303111e09d806ef2a652bddc2b73be6dccf6ae2.tar.bz2 iced-2303111e09d806ef2a652bddc2b73be6dccf6ae2.zip |
Draft new layout API
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index 56399e57..d2388ee2 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -199,32 +199,25 @@ #![deny(unsafe_code)] #![deny(rust_2018_idioms)] pub mod input; +pub mod layout; pub mod renderer; pub mod widget; mod element; mod event; mod hasher; -mod layout; mod mouse_cursor; -mod node; -mod style; mod user_interface; pub use iced_core::{ Align, Background, Color, Justify, Length, Point, Rectangle, Vector, }; -#[doc(no_inline)] -pub use stretch::{geometry::Size, number::Number}; - pub use element::Element; pub use event::Event; pub use hasher::Hasher; pub use layout::Layout; pub use mouse_cursor::MouseCursor; -pub use node::Node; pub use renderer::Renderer; -pub use style::Style; pub use user_interface::{Cache, UserInterface}; pub use widget::*; |