ExposedDropdownMenuDefaults


Contains default values used by Exposed Dropdown Menu.

Summary

Public functions

Unit

Default trailing icon for Exposed Dropdown Menu.

android
TextFieldColors
@Composable
outlinedTextFieldColors(
    focusedTextColor: Color,
    unfocusedTextColor: Color,
    disabledTextColor: Color,
    errorTextColor: Color,
    focusedContainerColor: Color,
    unfocusedContainerColor: Color,
    disabledContainerColor: Color,
    errorContainerColor: Color,
    cursorColor: Color,
    errorCursorColor: Color,
    selectionColors: TextSelectionColors,
    focusedBorderColor: Color,
    unfocusedBorderColor: Color,
    disabledBorderColor: Color,
    errorBorderColor: Color,
    focusedLeadingIconColor: Color,
    unfocusedLeadingIconColor: Color,
    disabledLeadingIconColor: Color,
    errorLeadingIconColor: Color,
    focusedTrailingIconColor: Color,
    unfocusedTrailingIconColor: Color,
    disabledTrailingIconColor: Color,
    errorTrailingIconColor: Color,
    focusedLabelColor: Color,
    unfocusedLabelColor: Color,
    disabledLabelColor: Color,
    errorLabelColor: Color,
    focusedPlaceholderColor: Color,
    unfocusedPlaceholderColor: Color,
    disabledPlaceholderColor: Color,
    errorPlaceholderColor: Color,
    focusedPrefixColor: Color,
    unfocusedPrefixColor: Color,
    disabledPrefixColor: Color,
    errorPrefixColor: Color,
    focusedSuffixColor: Color,
    unfocusedSuffixColor: Color,
    disabledSuffixColor: Color,
    errorSuffixColor: Color
)

Creates a TextFieldColors that represents the default input text, container, and content colors (including label, placeholder, icons, etc.) used in an OutlinedTextField within an ExposedDropdownMenuBox.

android
TextFieldColors
@Composable
textFieldColors(
    focusedTextColor: Color,
    unfocusedTextColor: Color,
    disabledTextColor: Color,
    errorTextColor: Color,
    focusedContainerColor: Color,
    unfocusedContainerColor: Color,
    disabledContainerColor: Color,
    errorContainerColor: Color,
    cursorColor: Color,
    errorCursorColor: Color,
    selectionColors: TextSelectionColors,
    focusedIndicatorColor: Color,
    unfocusedIndicatorColor: Color,
    disabledIndicatorColor: Color,
    errorIndicatorColor: Color,
    focusedLeadingIconColor: Color,
    unfocusedLeadingIconColor: Color,
    disabledLeadingIconColor: Color,
    errorLeadingIconColor: Color,
    focusedTrailingIconColor: Color,
    unfocusedTrailingIconColor: Color,
    disabledTrailingIconColor: Color,
    errorTrailingIconColor: Color,
    focusedLabelColor: Color,
    unfocusedLabelColor: Color,
    disabledLabelColor: Color,
    errorLabelColor: Color,
    focusedPlaceholderColor: Color,
    unfocusedPlaceholderColor: Color,
    disabledPlaceholderColor: Color,
    errorPlaceholderColor: Color,
    focusedPrefixColor: Color,
    unfocusedPrefixColor: Color,
    disabledPrefixColor: Color,
    errorPrefixColor: Color,
    focusedSuffixColor: Color,
    unfocusedSuffixColor: Color,
    disabledSuffixColor: Color,
    errorSuffixColor: Color
)

Creates a TextFieldColors that represents the default input text, container, and content colors (including label, placeholder, icons, etc.) used in a TextField within an ExposedDropdownMenuBox.

android

Public properties

PaddingValues

Padding for DropdownMenuItems within ExposedDropdownMenuBoxScope.ExposedDropdownMenu to align them properly with TextField components.

android

Public functions

TrailingIcon

@ExperimentalMaterial3Api
@Composable
fun TrailingIcon(expanded: Boolean): Unit

Default trailing icon for Exposed Dropdown Menu.

Parameters
expanded: Boolean

whether ExposedDropdownMenuBoxScope.ExposedDropdownMenu is expanded or not. Affects the appearance of the icon.

outlinedTextFieldColors

@Composable
fun outlinedTextFieldColors(
    focusedTextColor: Color = OutlinedAutocompleteTokens.FieldFocusInputTextColor.value,
    unfocusedTextColor: Color = OutlinedAutocompleteTokens.FieldInputTextColor.value,
    disabledTextColor: Color = OutlinedAutocompleteTokens.FieldDisabledInputTextColor.value .copy(alpha = OutlinedAutocompleteTokens.FieldDisabledInputTextOpacity),
    errorTextColor: Color = OutlinedAutocompleteTokens.FieldErrorInputTextColor.value,
    focusedContainerColor: Color = Color.Transparent,
    unfocusedContainerColor: Color = Color.Transparent,
    disabledContainerColor: Color = Color.Transparent,
    errorContainerColor: Color = Color.Transparent,
    cursorColor: Color = OutlinedAutocompleteTokens.TextFieldCaretColor.value,
    errorCursorColor: Color = OutlinedAutocompleteTokens.TextFieldErrorFocusCaretColor.value,
    selectionColors: TextSelectionColors = LocalTextSelectionColors.current,
    focusedBorderColor: Color = OutlinedAutocompleteTokens.TextFieldFocusOutlineColor.value,
    unfocusedBorderColor: Color = OutlinedAutocompleteTokens.TextFieldOutlineColor.value,
    disabledBorderColor: Color = OutlinedAutocompleteTokens.TextFieldDisabledOutlineColor.value .copy(alpha = OutlinedAutocompleteTokens.TextFieldDisabledOutlineOpacity),
    errorBorderColor: Color = OutlinedAutocompleteTokens.TextFieldErrorOutlineColor.value,
    focusedLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldFocusLeadingIconColor.value,
    unfocusedLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldLeadingIconColor.value,
    disabledLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldDisabledLeadingIconColor.value .copy(alpha = OutlinedAutocompleteTokens.TextFieldDisabledLeadingIconOpacity),
    errorLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldErrorLeadingIconColor.value,
    focusedTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldFocusTrailingIconColor.value,
    unfocusedTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldTrailingIconColor.value,
    disabledTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldDisabledTrailingIconColor.value .copy(alpha = OutlinedAutocompleteTokens.TextFieldDisabledTrailingIconOpacity),
    errorTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldErrorTrailingIconColor.value,
    focusedLabelColor: Color = OutlinedAutocompleteTokens.FieldFocusLabelTextColor.value,
    unfocusedLabelColor: Color = OutlinedAutocompleteTokens.FieldLabelTextColor.value,
    disabledLabelColor: Color = OutlinedAutocompleteTokens.FieldDisabledLabelTextColor.value .copy(alpha = OutlinedAutocompleteTokens.FieldDisabledLabelTextOpacity),
    errorLabelColor: Color = OutlinedAutocompleteTokens.FieldErrorLabelTextColor.value,
    focusedPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    unfocusedPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    disabledPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldDisabledSupportingTextColor.value .copy(alpha = OutlinedAutocompleteTokens.FieldDisabledSupportingTextOpacity),
    errorPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    focusedPrefixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    unfocusedPrefixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    disabledPrefixColor: Color = OutlinedAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = OutlinedAutocompleteTokens.FieldDisabledSupportingTextOpacity),
    errorPrefixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    focusedSuffixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    unfocusedSuffixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value,
    disabledSuffixColor: Color = OutlinedAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = OutlinedAutocompleteTokens.FieldDisabledSupportingTextOpacity),
    errorSuffixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value
): TextFieldColors

Creates a TextFieldColors that represents the default input text, container, and content colors (including label, placeholder, icons, etc.) used in an OutlinedTextField within an ExposedDropdownMenuBox.

Parameters
focusedTextColor: Color = OutlinedAutocompleteTokens.FieldFocusInputTextColor.value

the color used for the input text of this text field when focused

unfocusedTextColor: Color = OutlinedAutocompleteTokens.FieldInputTextColor.value

the color used for the input text of this text field when not focused

disabledTextColor: Color = OutlinedAutocompleteTokens.FieldDisabledInputTextColor.value .copy(alpha = OutlinedAutocompleteTokens.FieldDisabledInputTextOpacity)

the color used for the input text of this text field when disabled

errorTextColor: Color = OutlinedAutocompleteTokens.FieldErrorInputTextColor.value

the color used for the input text of this text field when in error state

focusedContainerColor: Color = Color.Transparent

the container color for this text field when focused

unfocusedContainerColor: Color = Color.Transparent

the container color for this text field when not focused

disabledContainerColor: Color = Color.Transparent

the container color for this text field when disabled

errorContainerColor: Color = Color.Transparent

the container color for this text field when in error state

cursorColor: Color = OutlinedAutocompleteTokens.TextFieldCaretColor.value

the cursor color for this text field

errorCursorColor: Color = OutlinedAutocompleteTokens.TextFieldErrorFocusCaretColor.value

the cursor color for this text field when in error state

selectionColors: TextSelectionColors = LocalTextSelectionColors.current

the colors used when the input text of this text field is selected

focusedBorderColor: Color = OutlinedAutocompleteTokens.TextFieldFocusOutlineColor.value

the border color for this text field when focused

unfocusedBorderColor: Color = OutlinedAutocompleteTokens.TextFieldOutlineColor.value

the border color for this text field when not focused

disabledBorderColor: Color = OutlinedAutocompleteTokens.TextFieldDisabledOutlineColor.value .copy(alpha = OutlinedAutocompleteTokens.TextFieldDisabledOutlineOpacity)

the border color for this text field when disabled

errorBorderColor: Color = OutlinedAutocompleteTokens.TextFieldErrorOutlineColor.value

the border color for this text field when in error state

focusedLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldFocusLeadingIconColor.value

the leading icon color for this text field when focused

unfocusedLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldLeadingIconColor.value

the leading icon color for this text field when not focused

disabledLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldDisabledLeadingIconColor.value .copy(alpha = OutlinedAutocompleteTokens.TextFieldDisabledLeadingIconOpacity)

the leading icon color for this text field when disabled

errorLeadingIconColor: Color = OutlinedAutocompleteTokens.TextFieldErrorLeadingIconColor.value

the leading icon color for this text field when in error state

focusedTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldFocusTrailingIconColor.value

the trailing icon color for this text field when focused

unfocusedTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldTrailingIconColor.value

the trailing icon color for this text field when not focused

disabledTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldDisabledTrailingIconColor.value .copy(alpha = OutlinedAutocompleteTokens.TextFieldDisabledTrailingIconOpacity)

the trailing icon color for this text field when disabled

errorTrailingIconColor: Color = OutlinedAutocompleteTokens.TextFieldErrorTrailingIconColor.value

the trailing icon color for this text field when in error state

focusedLabelColor: Color = OutlinedAutocompleteTokens.FieldFocusLabelTextColor.value

the label color for this text field when focused

unfocusedLabelColor: Color = OutlinedAutocompleteTokens.FieldLabelTextColor.value

the label color for this text field when not focused

disabledLabelColor: Color = OutlinedAutocompleteTokens.FieldDisabledLabelTextColor.value .copy(alpha = OutlinedAutocompleteTokens.FieldDisabledLabelTextOpacity)

the label color for this text field when disabled

errorLabelColor: Color = OutlinedAutocompleteTokens.FieldErrorLabelTextColor.value

the label color for this text field when in error state

focusedPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the placeholder color for this text field when focused

unfocusedPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the placeholder color for this text field when not focused

disabledPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldDisabledSupportingTextColor.value .copy(alpha = OutlinedAutocompleteTokens.FieldDisabledSupportingTextOpacity)

the placeholder color for this text field when disabled

errorPlaceholderColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the placeholder color for this text field when in error state

focusedPrefixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the prefix color for this text field when focused

unfocusedPrefixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the prefix color for this text field when not focused

disabledPrefixColor: Color = OutlinedAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = OutlinedAutocompleteTokens.FieldDisabledSupportingTextOpacity)

the prefix color for this text field when disabled

errorPrefixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the prefix color for this text field when in error state

focusedSuffixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the suffix color for this text field when focused

unfocusedSuffixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the suffix color for this text field when not focused

disabledSuffixColor: Color = OutlinedAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = OutlinedAutocompleteTokens.FieldDisabledSupportingTextOpacity)

the suffix color for this text field when disabled

errorSuffixColor: Color = OutlinedAutocompleteTokens.FieldSupportingTextColor.value

the suffix color for this text field when in error state

textFieldColors

@Composable
fun textFieldColors(
    focusedTextColor: Color = FilledAutocompleteTokens.FieldFocusInputTextColor.value,
    unfocusedTextColor: Color = FilledAutocompleteTokens.FieldInputTextColor.value,
    disabledTextColor: Color = FilledAutocompleteTokens.FieldDisabledInputTextColor.value .copy(alpha = FilledAutocompleteTokens.FieldDisabledInputTextOpacity),
    errorTextColor: Color = FilledAutocompleteTokens.FieldErrorInputTextColor.value,
    focusedContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value,
    unfocusedContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value,
    disabledContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value,
    errorContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value,
    cursorColor: Color = FilledAutocompleteTokens.TextFieldCaretColor.value,
    errorCursorColor: Color = FilledAutocompleteTokens.TextFieldErrorFocusCaretColor.value,
    selectionColors: TextSelectionColors = LocalTextSelectionColors.current,
    focusedIndicatorColor: Color = FilledAutocompleteTokens.TextFieldFocusActiveIndicatorColor.value,
    unfocusedIndicatorColor: Color = FilledAutocompleteTokens.TextFieldActiveIndicatorColor.value,
    disabledIndicatorColor: Color = FilledAutocompleteTokens.TextFieldDisabledActiveIndicatorColor.value .copy(alpha = FilledAutocompleteTokens.TextFieldDisabledActiveIndicatorOpacity),
    errorIndicatorColor: Color = FilledAutocompleteTokens.TextFieldErrorActiveIndicatorColor.value,
    focusedLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldFocusLeadingIconColor.value,
    unfocusedLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldLeadingIconColor.value,
    disabledLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldDisabledLeadingIconColor.value .copy(alpha = FilledAutocompleteTokens.TextFieldDisabledLeadingIconOpacity),
    errorLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldErrorLeadingIconColor.value,
    focusedTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldFocusTrailingIconColor.value,
    unfocusedTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldTrailingIconColor.value,
    disabledTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldDisabledTrailingIconColor.value .copy(alpha = FilledAutocompleteTokens.TextFieldDisabledTrailingIconOpacity),
    errorTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldErrorTrailingIconColor.value,
    focusedLabelColor: Color = FilledAutocompleteTokens.FieldFocusLabelTextColor.value,
    unfocusedLabelColor: Color = FilledAutocompleteTokens.FieldLabelTextColor.value,
    disabledLabelColor: Color = FilledAutocompleteTokens.FieldDisabledLabelTextColor.value,
    errorLabelColor: Color = FilledAutocompleteTokens.FieldErrorLabelTextColor.value,
    focusedPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    unfocusedPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    disabledPlaceholderColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor.value .copy(alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity),
    errorPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    focusedPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    unfocusedPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    disabledPrefixColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity),
    errorPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    focusedSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    unfocusedSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value,
    disabledSuffixColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity),
    errorSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value
): TextFieldColors

Creates a TextFieldColors that represents the default input text, container, and content colors (including label, placeholder, icons, etc.) used in a TextField within an ExposedDropdownMenuBox.

Parameters
focusedTextColor: Color = FilledAutocompleteTokens.FieldFocusInputTextColor.value

the color used for the input text of this text field when focused

unfocusedTextColor: Color = FilledAutocompleteTokens.FieldInputTextColor.value

the color used for the input text of this text field when not focused

disabledTextColor: Color = FilledAutocompleteTokens.FieldDisabledInputTextColor.value .copy(alpha = FilledAutocompleteTokens.FieldDisabledInputTextOpacity)

the color used for the input text of this text field when disabled

errorTextColor: Color = FilledAutocompleteTokens.FieldErrorInputTextColor.value

the color used for the input text of this text field when in error state

focusedContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value

the container color for this text field when focused

unfocusedContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value

the container color for this text field when not focused

disabledContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value

the container color for this text field when disabled

errorContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value

the container color for this text field when in error state

cursorColor: Color = FilledAutocompleteTokens.TextFieldCaretColor.value

the cursor color for this text field

errorCursorColor: Color = FilledAutocompleteTokens.TextFieldErrorFocusCaretColor.value

the cursor color for this text field when in error state

selectionColors: TextSelectionColors = LocalTextSelectionColors.current

the colors used when the input text of this text field is selected

focusedIndicatorColor: Color = FilledAutocompleteTokens.TextFieldFocusActiveIndicatorColor.value

the indicator color for this text field when focused

unfocusedIndicatorColor: Color = FilledAutocompleteTokens.TextFieldActiveIndicatorColor.value

the indicator color for this text field when not focused

disabledIndicatorColor: Color = FilledAutocompleteTokens.TextFieldDisabledActiveIndicatorColor.value .copy(alpha = FilledAutocompleteTokens.TextFieldDisabledActiveIndicatorOpacity)

the indicator color for this text field when disabled

errorIndicatorColor: Color = FilledAutocompleteTokens.TextFieldErrorActiveIndicatorColor.value

the indicator color for this text field when in error state

focusedLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldFocusLeadingIconColor.value

the leading icon color for this text field when focused

unfocusedLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldLeadingIconColor.value

the leading icon color for this text field when not focused

disabledLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldDisabledLeadingIconColor.value .copy(alpha = FilledAutocompleteTokens.TextFieldDisabledLeadingIconOpacity)

the leading icon color for this text field when disabled

errorLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldErrorLeadingIconColor.value

the leading icon color for this text field when in error state

focusedTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldFocusTrailingIconColor.value

the trailing icon color for this text field when focused

unfocusedTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldTrailingIconColor.value

the trailing icon color for this text field when not focused

disabledTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldDisabledTrailingIconColor.value .copy(alpha = FilledAutocompleteTokens.TextFieldDisabledTrailingIconOpacity)

the trailing icon color for this text field when disabled

errorTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldErrorTrailingIconColor.value

the trailing icon color for this text field when in error state

focusedLabelColor: Color = FilledAutocompleteTokens.FieldFocusLabelTextColor.value

the label color for this text field when focused

unfocusedLabelColor: Color = FilledAutocompleteTokens.FieldLabelTextColor.value

the label color for this text field when not focused

disabledLabelColor: Color = FilledAutocompleteTokens.FieldDisabledLabelTextColor.value

the label color for this text field when disabled

errorLabelColor: Color = FilledAutocompleteTokens.FieldErrorLabelTextColor.value

the label color for this text field when in error state

focusedPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the placeholder color for this text field when focused

unfocusedPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the placeholder color for this text field when not focused

disabledPlaceholderColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor.value .copy(alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity)

the placeholder color for this text field when disabled

errorPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the placeholder color for this text field when in error state

focusedPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the prefix color for this text field when focused

unfocusedPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the prefix color for this text field when not focused

disabledPrefixColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity)

the prefix color for this text field when disabled

errorPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the prefix color for this text field when in error state

focusedSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the suffix color for this text field when focused

unfocusedSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the suffix color for this text field when not focused

disabledSuffixColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor .value.copy(alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity)

the suffix color for this text field when disabled

errorSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value

the suffix color for this text field when in error state

Public properties

ItemContentPadding

val ItemContentPaddingPaddingValues

Padding for DropdownMenuItems within ExposedDropdownMenuBoxScope.ExposedDropdownMenu to align them properly with TextField components.