Picker Colors
constructor(dividerColor: Color, selectedItemBackgroundColor: Color, textColor: Color, selectedTextColor: Color, disabledDividerColor: Color = dividerColor.copy(alpha = dividerColor.alpha * DISABLED_CONTAINER_ALPHA), disabledSelectedItemBackgroundColor: Color = selectedItemBackgroundColor.copy(
alpha = selectedItemBackgroundColor.alpha * DISABLED_CONTAINER_ALPHA
), disabledTextColor: Color = textColor.copy(alpha = textColor.alpha * DISABLED_CONTENT_ALPHA), disabledSelectedTextColor: Color = selectedTextColor.copy(
alpha = selectedTextColor.alpha * DISABLED_CONTENT_ALPHA
))
Parameters
divider Color
The color of the dividers.
selected Item Background Color
The background color of the selected item area.
text Color
The color of unselected item text.
selected Text Color
The color of the selected item text.
disabled Divider Color
The divider color used when the picker is disabled.
disabled Selected Item Background Color
The selected item background color used when the picker is disabled.
disabled Text Color
The unselected item text color used when the picker is disabled.
disabled Selected Text Color
The selected item text color used when the picker is disabled.