diff options
author | 2024-01-21 19:02:01 +0100 | |
---|---|---|
committer | 2024-01-21 19:02:01 +0100 | |
commit | e695f7a04c16f786154f25a486b649ddbfd62939 (patch) | |
tree | beb8bb6fd28459d6a0b4c39fb5812f9c126a035e /widget/src/lib.rs | |
parent | 7a50e9e8fbb8d37e53a42c1dd5936b97463ead53 (diff) | |
download | iced-e695f7a04c16f786154f25a486b649ddbfd62939.tar.gz iced-e695f7a04c16f786154f25a486b649ddbfd62939.tar.bz2 iced-e695f7a04c16f786154f25a486b649ddbfd62939.zip |
Introduce `themer` widget
Diffstat (limited to '')
-rw-r--r-- | widget/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/widget/src/lib.rs b/widget/src/lib.rs index def1bde3..cefafdbe 100644 --- a/widget/src/lib.rs +++ b/widget/src/lib.rs @@ -19,6 +19,7 @@ pub use iced_style as style; mod column; mod mouse_area; mod row; +mod themer; pub mod button; pub mod checkbox; @@ -91,6 +92,8 @@ pub use text_editor::TextEditor; #[doc(no_inline)] pub use text_input::TextInput; #[doc(no_inline)] +pub use themer::Themer; +#[doc(no_inline)] pub use toggler::Toggler; #[doc(no_inline)] pub use tooltip::Tooltip; @@ -132,5 +135,5 @@ pub mod qr_code; #[doc(no_inline)] pub use qr_code::QRCode; -pub use crate::style::theme::{self, Theme}; pub use renderer::Renderer; +pub use style::theme::{self, Theme}; |