diff options
Diffstat (limited to 'widget/src/lib.rs')
-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}; |