SettingCategory

data class SettingCategory(val title: String, val key: String, val items: List<Setting>) : Setting

A category of settings. The UI will group the items with the following title.

Parameters

title

The title of the category.

key

should be ignored.

items

The Settings to be grouped in the category.

Constructors

Link copied to clipboard
constructor(title: String, key: String, items: List<Setting>)

Properties

Link copied to clipboard
Link copied to clipboard
open override val key: String
Link copied to clipboard
open override val title: String