diff options
author | 2020-10-03 18:26:31 +0200 | |
---|---|---|
committer | 2021-06-03 20:21:55 +0700 | |
commit | e00fca637202d7cd20fd10b2d7e2b2963f11dd33 (patch) | |
tree | 38728f46ee5f36d8853d842e08708d5a1c4844e2 /web/src/widget.rs | |
parent | c0cfd9d5cf373d4d7f89cf14c15f36e9995c1dbf (diff) | |
download | iced-e00fca637202d7cd20fd10b2d7e2b2963f11dd33.tar.gz iced-e00fca637202d7cd20fd10b2d7e2b2963f11dd33.tar.bz2 iced-e00fca637202d7cd20fd10b2d7e2b2963f11dd33.zip |
Add `Toggler` widget to `iced_web`
Diffstat (limited to 'web/src/widget.rs')
-rw-r--r-- | web/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/src/widget.rs b/web/src/widget.rs index 023f5f13..4cb0a9cc 100644 --- a/web/src/widget.rs +++ b/web/src/widget.rs @@ -24,6 +24,7 @@ pub mod radio; pub mod scrollable; pub mod slider; pub mod text_input; +pub mod toggler; mod column; mod row; @@ -40,6 +41,8 @@ pub use slider::Slider; pub use text::Text; #[doc(no_inline)] pub use text_input::TextInput; +#[doc(no_inline)] +pub use toggler::Toggler; pub use checkbox::Checkbox; pub use column::Column; |