diff options
author | 2024-04-25 01:39:34 +0200 | |
---|---|---|
committer | 2024-04-25 01:39:34 +0200 | |
commit | 0c74d2645649a88799a894ed684a728d135043fa (patch) | |
tree | 259174b70c65f9c17e8b2157a370169df244722f /widget/src/lib.rs | |
parent | 5ef593ce53e0ba53d51809f198a02743f87a6ccd (diff) | |
download | iced-0c74d2645649a88799a894ed684a728d135043fa.tar.gz iced-0c74d2645649a88799a894ed684a728d135043fa.tar.bz2 iced-0c74d2645649a88799a894ed684a728d135043fa.zip |
Implement `Stack` widget
It can be used to stack elements on top of each other!
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; |