diff options
author | 2021-11-29 16:22:01 +0700 | |
---|---|---|
committer | 2021-11-29 16:22:01 +0700 | |
commit | bbd9355450bc2df3a2c0e37cc900ba00b26255af (patch) | |
tree | a6cf758c934638e3dd9586781dfb62e1cf028572 /native/src/lib.rs | |
parent | f7792d89d64c39cdde9da030bec80fb6f461a0e3 (diff) | |
download | iced-bbd9355450bc2df3a2c0e37cc900ba00b26255af.tar.gz iced-bbd9355450bc2df3a2c0e37cc900ba00b26255af.tar.bz2 iced-bbd9355450bc2df3a2c0e37cc900ba00b26255af.zip |
Introduce `Shell` type in `iced_native`
Widgets now can invalidate the current layout of the application on demand.
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 51b232e9..f340ec14 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -53,6 +53,7 @@ pub mod window; mod element; mod hasher; mod runtime; +mod shell; mod user_interface; // We disable debug capabilities on release builds unless the `debug` feature @@ -85,6 +86,7 @@ pub use overlay::Overlay; pub use program::Program; pub use renderer::Renderer; pub use runtime::Runtime; +pub use shell::Shell; pub use subscription::Subscription; pub use user_interface::{Cache, UserInterface}; pub use widget::Widget; |