diff options
author | 2024-04-25 23:19:39 +0200 | |
---|---|---|
committer | 2024-04-25 23:19:39 +0200 | |
commit | 2d01d55cbc62601c640f2e55d8a8ddb5d63de1af (patch) | |
tree | 6a2a9339b2bc536fc71d3def15446b667110ca19 /widget/src/lib.rs | |
parent | 5ef593ce53e0ba53d51809f198a02743f87a6ccd (diff) | |
parent | 4fc342c97963a7a7e7983604b9399fccf017aa53 (diff) | |
download | iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.tar.gz iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.tar.bz2 iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.zip |
Merge pull request #2405 from iced-rs/feature/stack-widget
`Stack` widget
Diffstat (limited to 'widget/src/lib.rs')
-rw-r--r-- | widget/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widget/src/lib.rs b/widget/src/lib.rs index 1eeacbae..00e9aaa4 100644 --- a/widget/src/lib.rs +++ b/widget/src/lib.rs @@ -12,6 +12,7 @@ mod column; mod mouse_area; mod row; mod space; +mod stack; mod themer; pub mod button; @@ -78,6 +79,8 @@ pub use slider::Slider; #[doc(no_inline)] pub use space::Space; #[doc(no_inline)] +pub use stack::Stack; +#[doc(no_inline)] pub use text::Text; #[doc(no_inline)] pub use text_editor::TextEditor; |