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

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


<h2 id="bringintoviewrequester-bringintoviewrequester">bringIntoViewRequester</h2>

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


```kotlin
fun Modifier.bringIntoViewRequester(bringIntoViewRequester: BringIntoViewRequester): Modifier
```


Modifier that can be used to send `bringIntoView` requests.

The following example uses a `bringIntoViewRequester` to bring an item into the parent bounds.
The example demonstrates how a composable can ask its parents to scroll so that the component
using this modifier is brought into the bounds of all its parents.

#### Parameters

| | |
| --- | --- |
| bringIntoViewRequester | An instance of `BringIntoViewRequester`. This hoisted object can be used to send `bringIntoView` requests to parents of the current composable. |