summaryrefslogtreecommitdiff
path: root/material_theme/src/pick_list.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-04-13 03:31:36 +0200
committerpml68 <contact@pml68.dev>2025-04-15 23:52:40 +0200
commit68f4ed46b1846e27c03f23d0b98e3ce89dc497b8 (patch)
tree11a284c74966045a2f99fb7e62845e295ede54ec /material_theme/src/pick_list.rs
parentfeat(material_theme): add disabled scrollable `Style`s (diff)
downloadiced-builder-68f4ed46b1846e27c03f23d0b98e3ce89dc497b8.tar.gz
feat(material_theme): implement `pick_list::Catalog`
Diffstat (limited to '')
-rw-r--r--material_theme/src/pick_list.rs40
1 files changed, 40 insertions, 0 deletions
diff --git a/material_theme/src/pick_list.rs b/material_theme/src/pick_list.rs
new file mode 100644
index 0000000..c589100
--- /dev/null
+++ b/material_theme/src/pick_list.rs
@@ -0,0 +1,40 @@
+use iced_widget::core::{Background, border};
+use iced_widget::pick_list::{Catalog, Status, Style, StyleFn};
+
+use super::Theme;
+
+impl Catalog for Theme {
+ type Class<'a> = StyleFn<'a, Self>;
+
+ fn default<'a>() -> <Self as Catalog>::Class<'a> {
+ Box::new(default)
+ }
+
+ fn style(
+ &self,
+ class: &<Self as Catalog>::Class<'_>,
+ status: Status,
+ ) -> Style {
+ class(self, status)
+ }
+}
+
+pub fn default(theme: &Theme, status: Status) -> Style {
+ let surface = theme.colorscheme.surface;
+
+ let active = Style {
+ text_color: surface.on_surface,
+ placeholder_color: surface.on_surface_variant,
+ handle_color: surface.on_surface_variant,
+ background: Background::Color(surface.surface_container.highest),
+ border: border::rounded(4),
+ };
+
+ match status {
+ Status::Active => active,
+ Status::Hovered | Status::Opened { .. } => Style {
+ background: Background::Color(surface.surface_container.highest),
+ ..active
+ },
+ }
+}