FilterDropdownField
fun <E : Enum<E>> FilterDropdownField(currentValue: E?, getTitle: @Composable (E) -> String = { it.name }, placeholder: String = "", values: ImmutableList<E>, onClick: (E) -> Unit, modifier: Modifier = Modifier, checked: (E) -> Boolean? = null, contentPadding: PaddingValues = TableTextFieldDefaults.contentPadding())
Dropdown field specialized for enum values. Optionally supports multi-select with checked.