diff options
author | 2019-11-10 06:05:20 +0100 | |
---|---|---|
committer | 2019-11-11 03:08:00 +0100 | |
commit | 0240c3981b716c82ecb3364945815335b420a63e (patch) | |
tree | 441eebaa9441649a4e878bde71cdec20d4a67391 /native/src/lib.rs | |
parent | 2303111e09d806ef2a652bddc2b73be6dccf6ae2 (diff) | |
download | iced-0240c3981b716c82ecb3364945815335b420a63e.tar.gz iced-0240c3981b716c82ecb3364945815335b420a63e.tar.bz2 iced-0240c3981b716c82ecb3364945815335b420a63e.zip |
Draft custom layout engine based on `druid`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r-- | native/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index d2388ee2..453a3ad5 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -207,6 +207,7 @@ mod element; mod event; mod hasher; mod mouse_cursor; +mod size; mod user_interface; pub use iced_core::{ @@ -219,5 +220,6 @@ pub use hasher::Hasher; pub use layout::Layout; pub use mouse_cursor::MouseCursor; pub use renderer::Renderer; +pub use size::Size; pub use user_interface::{Cache, UserInterface}; pub use widget::*; |