Introduce themer widget

This commit is contained in:
Héctor Ramón Jiménez 2024-01-21 19:02:01 +01:00
parent 7a50e9e8fb
commit e695f7a04c
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
3 changed files with 284 additions and 2 deletions

View file

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