diff options
author | 2020-02-05 04:13:13 +0100 | |
---|---|---|
committer | 2020-02-05 04:13:55 +0100 | |
commit | 9a06e481b7f52a9d8e123c909d5614332f607c53 (patch) | |
tree | 811e7e83a1960194d7285f74764482253874f882 /web/src/widget.rs | |
parent | 8f52604987038225ce90261f17fd8408f1a7ebe3 (diff) | |
download | iced-9a06e481b7f52a9d8e123c909d5614332f607c53.tar.gz iced-9a06e481b7f52a9d8e123c909d5614332f607c53.tar.bz2 iced-9a06e481b7f52a9d8e123c909d5614332f607c53.zip |
Add `Handle` and `Data` to `image` in `iced_web`
Diffstat (limited to 'web/src/widget.rs')
-rw-r--r-- | web/src/widget.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/widget.rs b/web/src/widget.rs index 2e80346e..3192a767 100644 --- a/web/src/widget.rs +++ b/web/src/widget.rs @@ -18,6 +18,7 @@ use crate::{Bus, Css}; use dodrio::bumpalo; pub mod button; +pub mod image; pub mod scrollable; pub mod slider; pub mod text_input; @@ -25,7 +26,6 @@ pub mod text_input; mod checkbox; mod column; mod container; -mod image; mod radio; mod row; mod space; |