summaryrefslogtreecommitdiffstats
path: root/web/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-09-14 20:54:50 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-09-14 20:54:50 +0200
commit27ac85a9d98474904c422a891e54888376dec00a (patch)
treee268525f5bdb3e9631ba1156aaa6b02561dd03d4 /web/src/widget.rs
parenta97401aed2a173260a4abfdb65a77975ce6c0f01 (diff)
downloadiced-27ac85a9d98474904c422a891e54888376dec00a.tar.gz
iced-27ac85a9d98474904c422a891e54888376dec00a.tar.bz2
iced-27ac85a9d98474904c422a891e54888376dec00a.zip
Draft web runtime and widgets
Diffstat (limited to 'web/src/widget.rs')
-rw-r--r--web/src/widget.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/web/src/widget.rs b/web/src/widget.rs
new file mode 100644
index 00000000..5cb89a60
--- /dev/null
+++ b/web/src/widget.rs
@@ -0,0 +1,20 @@
+pub mod button;
+pub mod slider;
+pub mod text;
+
+mod checkbox;
+mod column;
+mod image;
+mod radio;
+mod row;
+
+pub use button::Button;
+pub use checkbox::Checkbox;
+pub use column::Column;
+pub use image::Image;
+pub use radio::Radio;
+pub use row::Row;
+pub use slider::Slider;
+pub use text::Text;
+
+pub trait Widget<Message> {}