diff options
| author | pml68 <contact@pml68.dev> | 2025-04-17 00:30:03 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-04-17 00:30:03 +0200 |
| commit | b2b7dddb28732fbf8b070dd96922eb7df50318cb (patch) | |
| tree | c6a8a61844ad7caa5ef5ded376ec19851e1cf1fe /crates/material_theme/src/qr_code.rs | |
| parent | feat(material_theme): implement `svg::Catalog` (under feature flag) (diff) | |
| download | iced-builder-b2b7dddb28732fbf8b070dd96922eb7df50318cb.tar.gz | |
feat(material_theme): implement `qr_code::Catalog` (under feature flag)
Diffstat (limited to 'crates/material_theme/src/qr_code.rs')
| -rw-r--r-- | crates/material_theme/src/qr_code.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/material_theme/src/qr_code.rs b/crates/material_theme/src/qr_code.rs new file mode 100644 index 0000000..f93fb77 --- /dev/null +++ b/crates/material_theme/src/qr_code.rs @@ -0,0 +1,24 @@ +use iced_widget::qr_code::{Catalog, Style, StyleFn}; + +use super::Theme; + +impl Catalog for Theme { + type Class<'a> = StyleFn<'a, Self>; + + fn default<'a>() -> Self::Class<'a> { + Box::new(default) + } + + fn style(&self, class: &Self::Class<'_>) -> Style { + class(self) + } +} + +pub fn default(theme: &Theme) -> Style { + let surface = theme.colorscheme.surface; + + Style { + cell: surface.on_surface, + background: surface.color, + } +} |
