aboutsummaryrefslogtreecommitdiff
path: root/src/rule.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-06-26 11:41:52 +0200
committerpml68 <contact@pml68.dev>2025-06-26 11:41:52 +0200
commit602565f98f3a22fa1c39e054c6a88b3c31a36599 (patch)
tree8aea60f9cfdc48a8e04651a7e809bb70ef4bd712 /src/rule.rs
downloadiced_material-602565f98f3a22fa1c39e054c6a88b3c31a36599.tar.gz
feat: initial commit
Diffstat (limited to 'src/rule.rs')
-rw-r--r--src/rule.rs35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/rule.rs b/src/rule.rs
new file mode 100644
index 0000000..77cb0ef
--- /dev/null
+++ b/src/rule.rs
@@ -0,0 +1,35 @@
+use iced_widget::core::border::Radius;
+use iced_widget::rule::{Catalog, FillMode, Style, StyleFn};
+
+use super::Theme;
+
+impl Catalog for Theme {
+ type Class<'a> = StyleFn<'a, Self>;
+
+ fn default<'a>() -> Self::Class<'a> {
+ Box::new(inset)
+ }
+
+ fn style(&self, class: &Self::Class<'_>) -> Style {
+ class(self)
+ }
+}
+
+pub fn inset(theme: &Theme) -> Style {
+ Style {
+ color: theme.colors().outline.variant,
+ fill_mode: FillMode::Padded(8),
+ width: 1,
+ radius: Radius::default(),
+ snap: cfg!(feature = "crisp"),
+ }
+}
+pub fn full_width(theme: &Theme) -> Style {
+ Style {
+ color: theme.colors().outline.variant,
+ fill_mode: FillMode::Full,
+ width: 1,
+ radius: Radius::default(),
+ snap: cfg!(feature = "crisp"),
+ }
+}