Setting Text Input
data class SettingTextInput(val title: String, val key: String, val summary: String? = null, val defaultValue: String? = null) : Setting
A setting that allows the user to input a string. Value can be accessed from Settings.getString, recommended to use String.isNullOrBlank.
Parameters
title
The title of the setting.
key
The key of the setting.
summary
The summary of the setting.
default Value
The default value of the setting.