Interface

SpatialArrangement.Vertical

Used to specify the vertical arrangement of the layout's children in layouts like SpatialColumn.

Source set: Android
@JvmDefaultWithCompatibility
public interface Vertical

Used to specify the vertical arrangement of the layout's children in layouts like SpatialColumn.

Properties

spacing

Source set: Android
public val spacing: Dp

Spacing that should be added between any two adjacent layout children.

Functions

arrange

public fun Density.arrange(totalSize: Int, sizes: IntArray, outPositions: IntArray)

Vertically places the layout children.

Parameters

totalSize Available space that can be occupied by the children, in pixels.
sizes An array of sizes of all children, in pixels.
outPositions An array of the size of sizes that returns the calculated positions. Position of each child is from the top edge of the parent to center of the child, in pixels.

Last updated: