From 9a06e481b7f52a9d8e123c909d5614332f607c53 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 5 Feb 2020 04:13:13 +0100 Subject: Add `Handle` and `Data` to `image` in `iced_web` --- web/src/widget.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/src/widget.rs') 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; -- cgit