Skip to content

Commit

Permalink
Merge pull request #2457 from PolyMeilex/pick-list-menu-style
Browse files Browse the repository at this point in the history
Allow for styling of the menu of a pick list
  • Loading branch information
hecrj authored Jun 10, 2024
2 parents 49affc4 + e2b00f9 commit bda0156
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions widget/src/pick_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,19 @@ where
self
}

/// Sets the style of the [`Menu`].
#[must_use]
pub fn menu_style(
mut self,
style: impl Fn(&Theme) -> menu::Style + 'a,
) -> Self
where
<Theme as menu::Catalog>::Class<'a>: From<menu::StyleFn<'a, Theme>>,
{
self.menu_class = (Box::new(style) as menu::StyleFn<'a, Theme>).into();
self
}

/// Sets the style class of the [`PickList`].
#[cfg(feature = "advanced")]
#[must_use]
Expand All @@ -171,6 +184,17 @@ where
self.class = class.into();
self
}

/// Sets the style class of the [`Menu`].
#[cfg(feature = "advanced")]
#[must_use]
pub fn menu_class(
mut self,
class: impl Into<<Theme as menu::Catalog>::Class<'a>>,
) -> Self {
self.menu_class = class.into();
self
}
}

impl<'a, T, L, V, Message, Theme, Renderer> Widget<Message, Theme, Renderer>
Expand Down

0 comments on commit bda0156

Please sign in to comment.