diff options
author | 2020-02-06 00:28:25 +0100 | |
---|---|---|
committer | 2020-02-06 00:28:25 +0100 | |
commit | ce45ecc23546efd85f04a76fcb1a3a691d259129 (patch) | |
tree | b4a16e6e9e59285eadbf7df432a60c40cd1a568b /web/src/widget.rs | |
parent | 9a7f7bfdf5afa329a60beab6556d739cf5d19b50 (diff) | |
download | iced-ce45ecc23546efd85f04a76fcb1a3a691d259129.tar.gz iced-ce45ecc23546efd85f04a76fcb1a3a691d259129.tar.bz2 iced-ce45ecc23546efd85f04a76fcb1a3a691d259129.zip |
Expose missing widget modules in `iced_web`
Diffstat (limited to 'web/src/widget.rs')
-rw-r--r-- | web/src/widget.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/src/widget.rs b/web/src/widget.rs index 3192a767..e5481243 100644 --- a/web/src/widget.rs +++ b/web/src/widget.rs @@ -18,15 +18,15 @@ use crate::{Bus, Css}; use dodrio::bumpalo; pub mod button; +pub mod checkbox; +pub mod container; pub mod image; +pub mod radio; pub mod scrollable; pub mod slider; pub mod text_input; -mod checkbox; mod column; -mod container; -mod radio; mod row; mod space; mod text; |