Compose Modifier

windowInsetsEndWidth

Sets the width to that of insets at the [end]androidx.compose.ui.Alignment.End of the screen, using either left or right, depending on the LayoutDirection.

Source set: Common

Added in 1.11.0-rc01

fun Modifier.windowInsetsEndWidth(insets: WindowInsets) =
    this then
        DerivedWidthModifierElement(
            insets,
            debugInspectorInfo {
                name = "insetsEndWidth"
                properties["insets"] = insets
            },
            endCalc,
        )

Sets the width to that of insets at the [end]androidx.compose.ui.Alignment.End of the screen, using either left or right, depending on the LayoutDirection.

When used, the WindowInsets will respect the consumed insets from windowInsetsPadding and consumeWindowInsets, but won't consume any insets.