pub struct Collapsing<T, H, V> {
pub header: Pod<H>,
pub content: Pod<V>,
pub on_open: Option<Box<dyn FnMut(&mut EventCx<'_, '_>, &mut T, bool)>>,
pub open: Option<bool>,
pub default_open: bool,
pub transition: Option<Transition>,
pub icon_size: Option<f32>,
pub icon_color: Option<Color>,
pub background: Option<Color>,
pub border_width: Option<BorderWidth>,
pub border_radius: Option<BorderRadius>,
pub border_color: Option<Color>,
}
Expand description
A collapsing view.
Can be styled using the CollapsingStyle
.
Fields§
§header: Pod<H>
The header.
content: Pod<V>
The content.
on_open: Option<Box<dyn FnMut(&mut EventCx<'_, '_>, &mut T, bool)>>
A callback for when the view is opened or closed.
open: Option<bool>
Whether the view is open.
default_open: bool
Whether the view is open by default.
transition: Option<Transition>
The transition of the view.
icon_size: Option<f32>
The size of the icon.
icon_color: Option<Color>
The color of the icon.
background: Option<Color>
The background color of the header.
border_width: Option<BorderWidth>
The border width of the header.
border_radius: Option<BorderRadius>
The border radius of the header.
border_color: Option<Color>
The color of the border of the header.
Implementations§
Source§impl<T, H, V> Collapsing<T, H, V>
impl<T, H, V> Collapsing<T, H, V>
Sourcepub fn open(self, open: impl Into<bool>) -> Collapsing<T, H, V>
pub fn open(self, open: impl Into<bool>) -> Collapsing<T, H, V>
Set self.open
.
Whether the view is open.
Sourcepub fn default_open(self, default_open: impl Into<bool>) -> Collapsing<T, H, V>
pub fn default_open(self, default_open: impl Into<bool>) -> Collapsing<T, H, V>
Set self.default_open
.
Whether the view is open by default.
Sourcepub fn transition(
self,
transition: impl Into<Transition>,
) -> Collapsing<T, H, V>
pub fn transition( self, transition: impl Into<Transition>, ) -> Collapsing<T, H, V>
Set self.transition
.
The transition of the view.
Sourcepub fn icon_size(self, icon_size: impl Into<f32>) -> Collapsing<T, H, V>
pub fn icon_size(self, icon_size: impl Into<f32>) -> Collapsing<T, H, V>
Set self.icon_size
.
The size of the icon.
Sourcepub fn icon_color(self, icon_color: impl Into<Color>) -> Collapsing<T, H, V>
pub fn icon_color(self, icon_color: impl Into<Color>) -> Collapsing<T, H, V>
Set self.icon_color
.
The color of the icon.
Sourcepub fn background(self, background: impl Into<Color>) -> Collapsing<T, H, V>
pub fn background(self, background: impl Into<Color>) -> Collapsing<T, H, V>
Set self.background
.
The background color of the header.
Sourcepub fn border_width(
self,
border_width: impl Into<BorderWidth>,
) -> Collapsing<T, H, V>
pub fn border_width( self, border_width: impl Into<BorderWidth>, ) -> Collapsing<T, H, V>
Set self.border_width
.
The border width of the header.
Sourcepub fn border_radius(
self,
border_radius: impl Into<BorderRadius>,
) -> Collapsing<T, H, V>
pub fn border_radius( self, border_radius: impl Into<BorderRadius>, ) -> Collapsing<T, H, V>
Set self.border_radius
.
The border radius of the header.
Sourcepub fn border_color(self, border_color: impl Into<Color>) -> Collapsing<T, H, V>
pub fn border_color(self, border_color: impl Into<Color>) -> Collapsing<T, H, V>
Set self.border_color
.
The color of the border of the header.
Source§impl<T, H, V> Collapsing<T, H, V>
impl<T, H, V> Collapsing<T, H, V>
Sourcepub fn new(header: H, content: V) -> Collapsing<T, H, V>
pub fn new(header: H, content: V) -> Collapsing<T, H, V>
Create a new Collapsing
view.