PreferencesGroup

@Composable
fun PreferencesGroup(title: String, modifier: Modifier = Modifier, description: String? = null, headerSuffix: @Composable () -> Unit = {}, separateRows: Boolean = false, content: @Composable () -> Unit = {})

Creates a org.gnome.adw.PreferencesGroup used to group org.gnome.adw.PreferencesRow widgets.

Parameters

title

The title of the group.

modifier

Compose Modifier for layout and styling.

description

The description of the group.

headerSuffix

Composable component displayed after the title and description.

separateRows

Whether the rows are separated.

content

The composable components used as rows inside the group.