<div class='type'>Composable Component</div>



Box for Exposed Dropdown Menu. Expected to contain `TextField` and
`ExposedDropdownMenuBoxScope.ExposedDropdownMenu` as a content.

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



<h2 id="exposeddropdownmenubox-expanded-onexpandedchange-modifier-content">ExposedDropdownMenuBox</h2>

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


```kotlin
@ExperimentalMaterialApi
@Composable
fun ExposedDropdownMenuBox(
    expanded: Boolean,
    onExpandedChange: (Boolean) -> Unit,
    modifier: Modifier = Modifier,
    content: @Composable ExposedDropdownMenuBoxScope.() -> Unit,
)
```


#### Parameters

| | |
| --- | --- |
| expanded | Whether Dropdown Menu should be expanded or not. |
| onExpandedChange | Executes when the user clicks on the ExposedDropdownMenuBox. |
| modifier | The modifier to apply to this layout |
| content | The content to be displayed inside ExposedDropdownMenuBox. |