summaryrefslogtreecommitdiff
path: root/crates/material_theme/src
diff options
context:
space:
mode:
Diffstat (limited to 'crates/material_theme/src')
-rw-r--r--crates/material_theme/src/lib.rs2
-rw-r--r--crates/material_theme/src/qr_code.rs24
2 files changed, 26 insertions, 0 deletions
diff --git a/crates/material_theme/src/lib.rs b/crates/material_theme/src/lib.rs
index a41dfd5..06ad838 100644
--- a/crates/material_theme/src/lib.rs
+++ b/crates/material_theme/src/lib.rs
@@ -13,6 +13,8 @@ pub mod dialog;
pub mod markdown;
pub mod menu;
pub mod pick_list;
+#[cfg(feature = "qr_code")]
+pub mod qr_code;
pub mod scrollable;
#[cfg(feature = "svg")]
pub mod svg;
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,
+ }
+}