Continue collab_panel

This commit is contained in:
Nate Butler 2023-09-05 17:13:33 -04:00
parent 0695e8d3b9
commit 477f4ddbbd
2 changed files with 125 additions and 21 deletions

View file

@ -364,6 +364,30 @@ pub trait StyleHelpers: Styleable<Style = Style> {
self
}
fn items_start(mut self) -> Self
where
Self: Sized,
{
self.declared_style().align_items = Some(AlignItems::FlexStart);
self
}
fn items_end(mut self) -> Self
where
Self: Sized,
{
self.declared_style().align_items = Some(AlignItems::FlexEnd);
self
}
fn items_center(mut self) -> Self
where
Self: Sized,
{
self.declared_style().align_items = Some(AlignItems::Center);
self
}
fn justify_between(mut self) -> Self
where
Self: Sized,