Implement Stack widget

It can be used to stack elements on top of each other!
This commit is contained in:
Héctor Ramón Jiménez 2024-04-25 01:39:34 +02:00
parent 5ef593ce53
commit 0c74d26456
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
4 changed files with 357 additions and 2 deletions

View file

@ -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;