Is there a way to have a background color with alp...
# compose
l
Is there a way to have a background color with alpha on the popup for an ExposedDropDownMenu? It looks like there’s not a modifier being passed down to ExposedDropdownMenuPopup. When I apply a background color that has alpha, it looks like there’s still white color behind it.
Copy code
ExposedDropdownMenu(modifier = Modifier.background(Color.Black.copy(alpha = 0.5f)), ...)
leads to gray, regardless of the color behind the popup.