public class FlexAlignItems @PublishedApi internal constructor(private val bits: Int)
Defines the default alignment for items along the cross axis within their respective lines. This controls how items are positioned perpendicular to the main axis. This can be overridden for an individual item using FlexConfigScope.alignSelf.
Functions
toString
override fun toString(): String
Members
Companion
public companion object
Properties
Start
public inline val Start: FlexAlignItems
Items are aligned toward the cross-start edge of their line.
End
public inline val End: FlexAlignItems
Items are aligned toward the cross-end edge of their line.
Center
public inline val Center: FlexAlignItems
Items are centered along the cross axis within their line.
Stretch
public inline val Stretch: FlexAlignItems
Items are stretched to fill the cross axis size of their line.
Baseline
public inline val Baseline: FlexAlignItems
Items are aligned such that their baselines match along the cross axis. Items without a baseline fall back to Start alignment.