🌈 Create new beautiful Compose Gradients with our new wesite ->
Class

FlexAlignItems

Defines the default alignment for items along the cross axis within their respective lines.

Source set: Common
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

Source set: Common
override fun toString(): String

Members

Companion

Source set: Common
public companion object

Properties

Start

Source set: Common
public inline val Start: FlexAlignItems

Items are aligned toward the cross-start edge of their line.

End

Source set: Common
public inline val End: FlexAlignItems

Items are aligned toward the cross-end edge of their line.

Center

Source set: Common
public inline val Center: FlexAlignItems

Items are centered along the cross axis within their line.

Stretch

Source set: Common
public inline val Stretch: FlexAlignItems

Items are stretched to fill the cross axis size of their line.

Baseline

Source set: Common
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.