summaryrefslogtreecommitdiffstats
path: root/pure/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-13 19:01:09 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-13 19:01:09 +0700
commit0fec0a2b77b6b9447117f2fea81c700a25fbca6d (patch)
tree1a3ae6c2711a31d512f725fe90545f4519632b26 /pure/src/widget.rs
parent3f1a45ca47dc086a5c4e45867d3f9c63a4e7ba19 (diff)
downloadiced-0fec0a2b77b6b9447117f2fea81c700a25fbca6d.tar.gz
iced-0fec0a2b77b6b9447117f2fea81c700a25fbca6d.tar.bz2
iced-0fec0a2b77b6b9447117f2fea81c700a25fbca6d.zip
Implement `Toggler` in `iced_pure`
Diffstat (limited to 'pure/src/widget.rs')
-rw-r--r--pure/src/widget.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/pure/src/widget.rs b/pure/src/widget.rs
index 009741a8..1c0633a6 100644
--- a/pure/src/widget.rs
+++ b/pure/src/widget.rs
@@ -10,6 +10,7 @@ mod scrollable;
mod slider;
mod text;
mod text_input;
+mod toggler;
mod tree;
pub use button::Button;
@@ -23,6 +24,7 @@ pub use scrollable::Scrollable;
pub use slider::Slider;
pub use text::Text;
pub use text_input::TextInput;
+pub use toggler::Toggler;
pub use tree::Tree;
use iced_native::event::{self, Event};