var expanded by remember { mutableStateOf(false) }
ExposedDropdownMenuBox(
expanded = expanded,
onExpandedChange = { expanded = it }
) {
WantedAutoComplete(
expanded = expanded,
onExpandedChange = { expanded = it },
sectionCount = 2,
sectionTitle = { section -> "섹션 $section" },
sectionItemCount = { section -> 3 },
sectionItem = { section, index ->
Text("아이템 $index")
}
)
}