summaryrefslogtreecommitdiffstats
path: root/widget/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-04-25 01:39:34 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-04-25 01:39:34 +0200
commit0c74d2645649a88799a894ed684a728d135043fa (patch)
tree259174b70c65f9c17e8b2157a370169df244722f /widget/src/lib.rs
parent5ef593ce53e0ba53d51809f198a02743f87a6ccd (diff)
downloadiced-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.rs3
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;