UserSettingField
data class UserSettingField(val key: String, val label: String, val hint: String = "", val defaultValue: String = "", val inputType: UserSettingInputType = UserSettingInputType.TEXT)
Describes a single user-configurable setting field.
The host renders an appropriate input widget for each field and persists the value. Values are available at runtime via UniversalAppContext.settings.
Constructors
Link copied to clipboard
constructor(key: String, label: String, hint: String = "", defaultValue: String = "", inputType: UserSettingInputType = UserSettingInputType.TEXT)