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

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


<h2 id="fitoutside-rulers">fitOutside</h2>

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


```kotlin
fun Modifier.fitOutside(rulers: RectRulers): Modifier
```


If one of the `Ruler`s in `rulers` has a value within the bounds of the Layout, this sizes the
content to that `Ruler` and the edge. If multiple `Ruler`s have a value within the space, only
one is chosen, in this order: `RectRulers.left`, `RectRulers.top`, `RectRulers.right`,
`RectRulers.bottom`. This only works when `Constraints` have
`fixed width` and `fixed height`. This can
be accomplished, for example, by having `Modifier.size`, or `Modifier.fillMaxSize`, or other size
modifier before `fitOutside`. If the `Constraints` sizes aren't fixed, or there are no `Ruler`s
within the bounds of the layout, `fitOutside` will size the content area to 0x0.