public object Absolute
Used to specify arrangement which doesn't change with layout direction.
Properties
Left
public val Left: Horizontal
All children should be arranged at the left of the SpatialRow. Unlike SpatialArrangement.Start, when layout direction is RTL, children will not be mirrored. Visually: 123####
Center
public val Center: Horizontal
All children should be arranged at the center of the SpatialRow. Unlike SpatialArrangement.Center, when layout direction is RTL, children will not be mirrored. Visually: ##123##
Right
public val Right: Horizontal
All children should be arranged at the right of the SpatialRow. Unlike SpatialArrangement.End, when layout direction is RTL, children will not be mirrored. Visually: ####123
SpaceEvenly
public val SpaceEvenly: Horizontal
There should be equal space between the children and before the first child and after the last child. Unlike SpatialArrangement.SpaceEvenly, when layout direction is RTL, children will not be mirrored. Visually: #1#2#3#
SpaceBetween
public val SpaceBetween: Horizontal
There should be equal space between the children and no space before the first child or after the last child. Unlike SpatialArrangement.SpaceBetween, when layout direction is RTL, children will not be mirrored. Visually: 1##2##3
SpaceAround
public val SpaceAround: Horizontal
There should be equal space around each child. Unlike SpatialArrangement.SpaceAround, when layout direction is RTL, children will not be mirrored. Visually: #1##2##3##4#
Functions
spacedBy
public fun spacedBy(space: Dp, spatialAlignment: SpatialAlignment.Horizontal): Horizontal
Children are placed next to each other with fixed space between them horizontally and align them according to the spatialAlignment given. Unlike SpatialArrangement.spacedBy, when layout direction is RTL, children will not be mirrored.
aligned
public fun aligned(spatialAlignment: SpatialAlignment.Horizontal): Horizontal
Children placed next to each other horizontally and align them according to the spatialAlignment given. Unlike SpatialArrangement.spacedBy, when layout direction is RTL, children will not be mirrored.