Implement Toggler in iced_pure

This commit is contained in:
Héctor Ramón Jiménez 2022-02-13 19:01:09 +07:00
parent 3f1a45ca47
commit 0fec0a2b77
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
3 changed files with 138 additions and 0 deletions

View file

@ -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};