diff options
author | 2020-09-19 18:44:27 +0200 | |
---|---|---|
committer | 2021-06-03 20:21:02 +0700 | |
commit | 52a185fbab728b85cf414d4997567f52ebc66205 (patch) | |
tree | 7592348bfd383d2de0c6af6fd7db4d76e9ffac5d /native/src/widget.rs | |
parent | 1dce929dfcfd3f9acc06e3b55157d40eb06b1324 (diff) | |
download | iced-52a185fbab728b85cf414d4997567f52ebc66205.tar.gz iced-52a185fbab728b85cf414d4997567f52ebc66205.tar.bz2 iced-52a185fbab728b85cf414d4997567f52ebc66205.zip |
Implement `Toggler` widget for iced_native
Diffstat (limited to '')
-rw-r--r-- | native/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index 791c53a3..759fe71a 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -36,6 +36,7 @@ pub mod space; pub mod svg; pub mod text; pub mod text_input; +pub mod toggler; pub mod tooltip; #[doc(no_inline)] @@ -73,6 +74,8 @@ pub use text::Text; #[doc(no_inline)] pub use text_input::TextInput; #[doc(no_inline)] +pub use toggler::Toggler; +#[doc(no_inline)] pub use tooltip::Tooltip; use crate::event::{self, Event}; |