summaryrefslogtreecommitdiffstats
path: root/native/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-30 19:20:59 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-30 19:20:59 +0100
commit8426bf953cb50f3b7fcb1e0ec8c2fdf22d2b01af (patch)
tree81f2ccbab0eba1fec581abc6d0ec0531fd9113f4 /native/src/widget.rs
parent7163e1d8b669b61d6fba6528c2a28fde3bfb72a0 (diff)
downloadiced-8426bf953cb50f3b7fcb1e0ec8c2fdf22d2b01af.tar.gz
iced-8426bf953cb50f3b7fcb1e0ec8c2fdf22d2b01af.tar.bz2
iced-8426bf953cb50f3b7fcb1e0ec8c2fdf22d2b01af.zip
Implement `Empty` widget
It can be useful if you want to fill some space with nothing.
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r--native/src/widget.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs
index 26889280..b73f229e 100644
--- a/native/src/widget.rs
+++ b/native/src/widget.rs
@@ -24,6 +24,7 @@ pub mod button;
pub mod checkbox;
pub mod column;
pub mod container;
+pub mod empty;
pub mod image;
pub mod radio;
pub mod row;
@@ -42,6 +43,8 @@ pub use column::Column;
#[doc(no_inline)]
pub use container::Container;
#[doc(no_inline)]
+pub use empty::Empty;
+#[doc(no_inline)]
pub use image::Image;
#[doc(no_inline)]
pub use radio::Radio;