<div class='type'>Compose Modifier</div>

<a id='references'></a>


<h2 id="windowinsetsbottomheight-insets">windowInsetsBottomHeight</h2>

<div class='sourceset sourceset-common'>Common</div>


```kotlin
fun Modifier.windowInsetsBottomHeight(insets: WindowInsets) =
    this then
        DerivedHeightModifierElement(
            insets,
            debugInspectorInfo {
                name = "insetsBottomHeight"
                properties["insets"] = insets
            },
            bottomCalc,
        )
```


Sets the height to that of `insets` at the `bottom` of the screen.

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