pub struct Wrap<V> {
pub content: PodSeq<V>,
pub axis: Axis,
pub justify: Option<Justify>,
pub align: Option<Align>,
pub justify_cross: Option<Justify>,
pub row_gap: Option<f32>,
pub column_gap: Option<f32>,
}
Expand description
A view that lays out it’s content in a line wrapping if it doesn’t fit.
Note that unlike Stack
this view does not care about flex.
Fields§
§content: PodSeq<V>
The content.
axis: Axis
The axis.
justify: Option<Justify>
How to justify the content along the main axis.
align: Option<Align>
How to align the content along the cross axis.
justify_cross: Option<Justify>
How to justify the content along the cross axis.
row_gap: Option<f32>
The gap between each row.
column_gap: Option<f32>
The gap between each column.
Implementations§
Source§impl<V> Wrap<V>
impl<V> Wrap<V>
Sourcepub fn justify(self, justify: impl Into<Justify>) -> Wrap<V>
pub fn justify(self, justify: impl Into<Justify>) -> Wrap<V>
Set self.justify
.
How to justify the content along the main axis.
Sourcepub fn align(self, align: impl Into<Align>) -> Wrap<V>
pub fn align(self, align: impl Into<Align>) -> Wrap<V>
Set self.align
.
How to align the content along the cross axis.
Sourcepub fn justify_cross(self, justify_cross: impl Into<Justify>) -> Wrap<V>
pub fn justify_cross(self, justify_cross: impl Into<Justify>) -> Wrap<V>
Set self.justify_cross
.
How to justify the content along the cross axis.
Sourcepub fn row_gap(self, row_gap: impl Into<f32>) -> Wrap<V>
pub fn row_gap(self, row_gap: impl Into<f32>) -> Wrap<V>
Set self.row_gap
.
The gap between each row.
Sourcepub fn column_gap(self, column_gap: impl Into<f32>) -> Wrap<V>
pub fn column_gap(self, column_gap: impl Into<f32>) -> Wrap<V>
Set self.column_gap
.
The gap between each column.
Source§impl<T> Wrap<Vec<T>>
impl<T> Wrap<Vec<T>>
Sourcepub fn horizontal_vec() -> Wrap<Vec<T>>
pub fn horizontal_vec() -> Wrap<Vec<T>>
Create a new horizontal Wrap
, with a vector of content.
Sourcepub fn vertical_vec() -> Wrap<Vec<T>>
pub fn vertical_vec() -> Wrap<Vec<T>>
Create a new vertical Wrap
, with a vector of content.
Trait Implementations§
Source§impl<V> Stylable for Wrap<V>
impl<V> Stylable for Wrap<V>
Source§impl<T, V> View<T> for Wrap<V>where
V: ViewSeq<T>,
impl<T, V> View<T> for Wrap<V>where
V: ViewSeq<T>,
Source§type State = (WrapState, SeqState<T, V>)
type State = (WrapState, SeqState<T, V>)
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <Wrap<V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Wrap<V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
_: &mut <Wrap<V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Wrap<V>,
)
fn rebuild( &mut self, _: &mut <Wrap<V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Wrap<V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_: &mut <Wrap<V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, _: &mut <Wrap<V> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl<V> Freeze for Wrap<V>where
V: Freeze,
impl<V> RefUnwindSafe for Wrap<V>where
V: RefUnwindSafe,
impl<V> Send for Wrap<V>where
V: Send,
impl<V> Sync for Wrap<V>where
V: Sync,
impl<V> Unpin for Wrap<V>where
V: Unpin,
impl<V> UnwindSafe for Wrap<V>where
V: UnwindSafe,
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more