ActionRow

@Composable
fun ActionRow(title: String, modifier: Modifier = Modifier, prefix: @Composable ActionRowSlotScope.() -> Unit = {}, suffix: @Composable ActionRowSlotScope.() -> Unit = {}, onActivate: () -> Unit = {}, activatable: Boolean = true, titleSelectable: Boolean = false, useMarkup: Boolean = true, useUnderline: Boolean = false, subtitle: String? = null, subtitleLines: Int = 0, subtitleSelectable: Boolean = false, titleLines: Int = 0)

Creates a org.gnome.adw.ActionRow, a list box row that presents actions.

org.gnome.adw.ActionRow is a child of org.gnome.adw.PreferencesRow which is usually used for preferences/settings inside and application.

Parameters

title

The title for this row.

modifier

Compose Modifier for layout and styling.

prefix

Composable components displayed at the start of the row.

suffix

Composable components displayed at the end of the row.

onActivate

Callback triggered when this row is activated.

activatable

Whether the component can be activated.

useMarkup

Whether to use Pango markup for the title and subtitle.

useUnderline

Whether an embedded underline in the title or subtitle indicates a mnemonic.

subtitle

The subtitle for this row.

subtitleLines

The number of lines at the end of which the subtitle label will be ellipsized.

subtitleSelectable

Whether the subtitle is selectable.

titleLines

The number of lines at the end of which the title label will be ellipsized.