Compose Component

ExposedDropdownMenuBox

Menus display a list of choices on a temporary surface.

ExposedDropdownMenuBox social preview

ExposedDropdownMenuBox

Source set: Common
@ExperimentalMaterial3Api
@Composable
fun ExposedDropdownMenuBox(
    expanded: Boolean,
    onExpandedChange: (Boolean) -> Unit,
    modifier: Modifier = Modifier,
    content: @Composable ExposedDropdownMenuBoxScope.() -> Unit,
)

Parameters

expanded whether the menu is expanded or not
onExpandedChange called when the exposed dropdown menu is clicked and the expansion state changes.
modifier the Modifier to be applied to this ExposedDropdownMenuBox
content the content of this ExposedDropdownMenuBox, typically a TextField and an [ExposedDropdownMenu]ExposedDropdownMenuBoxScope.ExposedDropdownMenu.

Last updated: