public object SpatialArrangement
Used to specify the arrangement of the layout's children in layouts like SpatialRow or SpatialColumn in the main axis direction (horizontal and vertical, respectively).
SpatialRow supports horizontal arrangements similar to Row: 
SpatialColumn supports horizontal arrangements similar to Column: 
Functions
spacedBy
public fun spacedBy(space: Dp): AxisIndependent
Children are placed next to each other with fixed space between them along the main axis.
spacedBy
public fun spacedBy(space: Dp, spatialAlignment: SpatialAlignment.Horizontal): Horizontal
Children are placed next to each other with fixed space between them horizontally and aligned them according to the spatialAlignment given.
spacedBy
public fun spacedBy(space: Dp, spatialAlignment: SpatialAlignment.Vertical): Vertical
Children are placed next to each other with fixed space between them vertically and align them according to the spatialAlignment given.
aligned
public fun aligned(spatialAlignment: SpatialAlignment.Horizontal): Horizontal
Children placed next to each other horizontally and align them according to the spatialAlignment given.
aligned
public fun aligned(spatialAlignment: SpatialAlignment.Vertical): Vertical
Children placed next to each other vertically and align them according to the spatialAlignment.