summaryrefslogtreecommitdiffstats
path: root/widget/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-01-21 19:02:01 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-01-21 19:02:01 +0100
commite695f7a04c16f786154f25a486b649ddbfd62939 (patch)
treebeb8bb6fd28459d6a0b4c39fb5812f9c126a035e /widget/src/lib.rs
parent7a50e9e8fbb8d37e53a42c1dd5936b97463ead53 (diff)
downloadiced-e695f7a04c16f786154f25a486b649ddbfd62939.tar.gz
iced-e695f7a04c16f786154f25a486b649ddbfd62939.tar.bz2
iced-e695f7a04c16f786154f25a486b649ddbfd62939.zip
Introduce `themer` widget
Diffstat (limited to '')
-rw-r--r--widget/src/lib.rs5
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};