ExpandableListHeader.kt |
Expandable header for sections of lists
@param headerText The title of the header.
@param headerTextStyle The text style of the header.
@param expanded Indicates whether the section of content is expanded. If null, the Icon will be hidden.
@param expandActionContentDescription The content description for expanding the section.
@param collapseActionContentDescription The content description for collapsing the section.
@param onClick Optional lambda for handling header clicks.
@param actions Optional Composable for adding UI to the end of the header.
|
6114 |
ListItem.kt |
List item used to display a label with an optional description text and
an optional [IconButton] at the end.
@param label The label in the list item.
@param modifier [Modifier] to be applied to the layout.
@param maxLabelLines An optional maximum number of lines for the label text to span.
@param description An optional description text below the label.
@param maxDescriptionLines An optional maximum number of lines for the description text to span.
@param onClick Called when the user clicks on the item.
@param iconPainter [Painter] used to display an [IconButton] after the list item.
@param iconDescription Content description of the icon.
@param onIconClick Called when the user clicks on the icon.
|
15681 |