SettingItem

data class SettingItem(val title: String, val key: String, val summary: String? = null) : Setting

A Setting item that can be used to show some data in the UI or as a Button with the help of SettingsChangeListenerClient.

Parameters

title

The title of the setting.

key

The unique key of the setting, will be called when the setting is clicked.

summary

The summary of the setting.

Constructors

Link copied to clipboard
constructor(title: String, key: String, summary: String? = null)

Properties

Link copied to clipboard
open override val key: String
Link copied to clipboard
val summary: String? = null
Link copied to clipboard
open override val title: String