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

FlexJustifyContent

Defines the arrangement of items along the main axis of their respective lines.

Source set: Common
public class FlexJustifyContent @PublishedApi internal constructor(private val bits: Int)

Defines the arrangement of items along the main axis of their respective lines. This controls how free space is distributed between and around items after their main axis sizes have been resolved.

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: FlexJustifyContent

Place items such that they are as close as possible to the main-start edge of their line.

End

Source set: Common
public inline val End: FlexJustifyContent

Place items such that they are as close as possible to the main-end edge of their line.

Center

Source set: Common
public inline val Center: FlexJustifyContent

Place items such that they are as close as possible to the middle of the main axis within their line.

SpaceBetween

Source set: Common
public inline val SpaceBetween: FlexJustifyContent

Place items such that they are spaced evenly across the main axis, without free space before the first item or after the last item.

SpaceAround

Source set: Common
public inline val SpaceAround: FlexJustifyContent

Place items such that they are spaced evenly across the main axis, including free space before the first item and after the last item, but half the amount of space existing otherwise between two consecutive items.

SpaceEvenly

Source set: Common
public inline val SpaceEvenly: FlexJustifyContent

Place items such that they are spaced evenly across the main axis, including free space before the first item and after the last item.