https://kotlinlang.org logo
#compose
Title
# compose
l

Landry Norris

08/18/2022, 9:00 PM
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.
7 Views