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

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


<h2 id="focustarget">focusTarget</h2>

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


```kotlin
fun Modifier.focusTarget(): Modifier
```


Add this modifier to a component to make it focusable.

Focus state is stored within this modifier. The bounds of this modifier reflect the bounds of the
focus box.

Note: This is a low level modifier. Before using this consider using
`Modifier.focusable()`. It uses a `focusTarget` in its
implementation. `Modifier.focusable()` adds semantics that
are needed for accessibility.