diff options
author | 2019-12-30 19:20:59 +0100 | |
---|---|---|
committer | 2019-12-30 19:20:59 +0100 | |
commit | 8426bf953cb50f3b7fcb1e0ec8c2fdf22d2b01af (patch) | |
tree | 81f2ccbab0eba1fec581abc6d0ec0531fd9113f4 /web/src/widget.rs | |
parent | 7163e1d8b669b61d6fba6528c2a28fde3bfb72a0 (diff) | |
download | iced-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 'web/src/widget.rs')
-rw-r--r-- | web/src/widget.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web/src/widget.rs b/web/src/widget.rs index b0e16692..5cf0238a 100644 --- a/web/src/widget.rs +++ b/web/src/widget.rs @@ -25,6 +25,7 @@ pub mod text_input; mod checkbox; mod column; mod container; +mod empty; mod image; mod radio; mod row; @@ -44,6 +45,7 @@ pub use text_input::TextInput; pub use checkbox::Checkbox; pub use column::Column; pub use container::Container; +pub use empty::Empty; pub use image::Image; pub use radio::Radio; pub use row::Row; |