AppSectionTitle

fun AppSectionTitle(title: StringResource, modifier: Modifier = Modifier)

A title component for sections within a list or settings screen. This version accepts a StringResource for localized text.

Parameters

title

The StringResource for the title text.

modifier

The Modifier to be applied to the title.


fun AppSectionTitle(title: String, modifier: Modifier = Modifier)

A title component for sections within a list or settings screen. This version accepts a raw String.

Parameters

title

The string for the title text.

modifier

The Modifier to be applied to the title.