SettingsExpandableRow

fun SettingsExpandableRow(label: String, value: String?, expanded: Boolean, onExpandToggle: () -> Unit, theme: NavigationSettingsTheme, content: @Composable ColumnScope.() -> Unit)

Row that toggles a chevron and reveals or hides arbitrary content below.

Parameters

label

Primary label shown in the row.

value

Optional current value shown to the right of the label.

expanded

Whether the content section is currently visible.

onExpandToggle

Called when the user taps the row to expand or collapse.

theme

Color and typography tokens.

content

Composable content revealed when expanded is true.