FilterDropdownField

fun <E : Enum<E>> FilterDropdownField(currentValue: E?, values: ImmutableList<E>, onClick: (E) -> Unit, modifier: Modifier = Modifier, getTitle: @Composable (E) -> String = { it.name }, placeholder: String = "", checked: (E) -> Boolean? = null, contentPadding: PaddingValues = TableTextFieldDefaults.contentPadding())

Dropdown field specialized for enum values. Optionally supports multi-select with checked.