Struct yew_layout::ColumnProps [−][src]
pub struct ColumnProps {Show 16 fields
pub children: Children,
pub fill: bool,
pub cross_fill: bool,
pub expand_by: Option<f32>,
pub shrink_by: Option<f32>,
pub inline: bool,
pub reverse: bool,
pub wrap: bool,
pub align: Option<Align>,
pub cross_align: Option<CrossAlign>,
pub align_self: Option<AlignSelf>,
pub gap: Option<Gap>,
pub reverse_columns: bool,
pub align_columns: Option<AlignColumns>,
pub padding: Option<Padding>,
pub margin: Option<Margin>,
}Expand description
Column properties.
Here you can find all properties that can be used with Column component.
Fields
children: Childrenfill: boolFill the available sapce vertically.
The default is true
cross_fill: boolFill the available sapce horizontally.
The default is false
expand_by: Option<f32>Expand factor used to exapnd this column in direction relevant to it’s parent layout direction.
When the parent is Row it will expand horizontally, when the parent is
Column it will expand vertically.
Note: This only works when this Column inside another flex layout.
The default is None
shrink_by: Option<f32>Shrink factor used to shrink this column in direction relevant to it’s parent layout direction when needed.
When the parent is Row it will shrink horizontally, when the parent is
Column it will shrink vertically.
Note: This only works when this Column inside another flex layout.
The default is None
inline: boolMake this layout inline
The default is false
reverse: boolReverse the order of the children
The default is false
wrap: boolWrap into another column when there is no more vertical space.
The default is false
align: Option<Align>Align the children inside this column in main direction (horizontally).
The default is None
cross_align: Option<CrossAlign>Align the children inside this column in the cross direction (vertically).
The default is None
align_self: Option<AlignSelf>Align this column when it’s inside another layout, the alignment direction is relevant to the parent layout direction
When the parent is Row it will align horizontally, when the parent is
Column it will align vertically.
Note: This only works when this Column inside another layout.
The default is None
gap: Option<Gap>Gap between children.
this take css_style::Gap value, which can take either one value that
defines the gap for both the columns (if there is any) and rows, or two
values one for rows and the other for columns.
The default is None
reverse_columns: boolReverse columns if there is more than one column within this Column.
The default is false
align_columns: Option<AlignColumns>Align columns in the corss direction (horizontally) if there is more
than one column within this Column.
The default is None
padding: Option<Padding>Padding for the Column
The default is None
margin: Option<Margin>Margin for the Column
The default is None
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl !RefUnwindSafe for ColumnProps
impl !Send for ColumnProps
impl !Sync for ColumnProps
impl Unpin for ColumnProps
impl !UnwindSafe for ColumnProps
Blanket Implementations
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
T: FloatComponent,
Swp: WhitePoint,
Dwp: WhitePoint,
D: AdaptFrom<S, Swp, Dwp, T>,
Mutably borrows from an owned value. Read more
Convert into T with values clamped to the color defined bounds Read more
Convert into T. The resulting color might be invalid in its color space Read more
Convert self to a value of a Properties struct.
Convert self to a value of a Properties struct.
Convert into T, returning ok if the color is inside of its defined
range, otherwise an OutOfBounds error is returned which contains
the unclamped color. Read more
