Companion

Functions

Link copied to clipboard
fun Above(layerId: String, block: @Composable () -> Unit)

The layers specified in block are put above the layer with the given layerId, i.e. in front of it.

Link copied to clipboard
fun At(anchor: Anchor, block: @Composable () -> Unit)

The layers specified in block are put at the given Anchor.

Link copied to clipboard
fun Below(layerId: String, block: @Composable () -> Unit)

The layers specified in block are put below the layer with the given layerId, i.e. behind it.

Link copied to clipboard
fun Bottom(block: @Composable () -> Unit)

The layers specified in block are put at the bottom, i.e. behind of all other layers.

Link copied to clipboard
fun Replace(layerId: String, block: @Composable () -> Unit)

The layers specified in block replace the layer with the given layerId, i.e. are shown instead of it.

Link copied to clipboard
fun Top(block: @Composable () -> Unit)

The layers specified in block are put at the top, i.e. in front of all other layers.