flexHorizontally
fun flexHorizontally(grow: Float? = null, shrink: Float? = null, basis: SizeSchema.Behavior.Horizontal.Flex.FlexBasis? = null, alignSelf: SizeSchema.Behavior.Horizontal.Flex.FlexAlignSelf? = null, order: Int? = null): SizeSchema.Behavior.Horizontal.Flex
CSS-flexbox-style horizontal sizing, for children of a FlexBox.
Parameters
grow
How much this child grows relative to siblings to fill extra space. Defaults to none.
shrink
How much this child shrinks relative to siblings when space is tight. Defaults to none.
basis
Initial main-axis size before growing/shrinking, built with flexBasisAuto, flexBasisFixed or flexBasisFraction. Defaults to none.
alignSelf
Cross-axis alignment override for this child, built with flexAlignSelfAuto, flexAlignSelfStart, flexAlignSelfCenter, flexAlignSelfEnd, flexAlignSelfStretch or flexAlignSelfBaseline. Defaults to none (inherits the container's alignItems).
order
Paint/layout order override relative to siblings. Defaults to none (declaration order).