Interface

SubspaceMeasureResult

Interface holding the size of the measured layout, as well as the children positioning logic.

Source set: Android
public interface SubspaceMeasureResult

Interface holding the size of the measured layout, as well as the children positioning logic.

Based on androidx.compose.ui.layout.MeasureResult.

Properties

width

Source set: Android
public val width: Int

The measured width of the layout, in pixels.

height

Source set: Android
public val height: Int

The measured height of the layout, in pixels.

depth

Source set: Android
public val depth: Int

The measured depth of the layout, in pixels.

Functions

placeChildren

public fun placeChildren(placementScope: SubspacePlaceable.SubspacePlacementScope)

Used for positioning children. SubspacePlaceable.placeAt should be called on children inside placeChildren

Last updated: