ModifierApplier

fun ModifierApplier(modifier: Modifier, content: @Composable () -> Unit)

A minimal layout composable that measures a single child and places it at (0, 0).

Useful when a Modifier chain needs to be applied without an intermediate layout from a parent composable. Delegates to Layout and renders the first child only.

Parameters

modifier

The Modifier to apply to the child content.

content

The single child composable to measure and place.