summaryrefslogtreecommitdiffstats
path: root/web/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2019-12-31 10:36:06 +0100
committerLibravatar GitHub <noreply@github.com>2019-12-31 10:36:06 +0100
commit26de688e68347e1f6e388d01014eac89cea71afa (patch)
tree6e454bd187407003a243eda4d137a153302f79b2 /web/src/widget.rs
parenteb8866007456c7ea9efb5449096b0aa15b66ba9b (diff)
parent3a327e08e96d9588d145c32afe4f04f37a8f0f0f (diff)
downloadiced-26de688e68347e1f6e388d01014eac89cea71afa.tar.gz
iced-26de688e68347e1f6e388d01014eac89cea71afa.tar.bz2
iced-26de688e68347e1f6e388d01014eac89cea71afa.zip
Merge pull request #138 from hecrj/feature/empty-widget
`Space` widget
Diffstat (limited to 'web/src/widget.rs')
-rw-r--r--web/src/widget.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/src/widget.rs b/web/src/widget.rs
index b0e16692..0ac536bd 100644
--- a/web/src/widget.rs
+++ b/web/src/widget.rs
@@ -28,6 +28,7 @@ mod container;
mod image;
mod radio;
mod row;
+mod space;
mod text;
#[doc(no_inline)]
@@ -47,6 +48,7 @@ pub use container::Container;
pub use image::Image;
pub use radio::Radio;
pub use row::Row;
+pub use space::Space;
/// A component that displays information and allows interaction.
///