Feature Form Color Scheme
data class FeatureFormColorScheme(val editableTextFieldColors: EditableTextFieldColors, val readOnlyFieldColors: ReadOnlyFieldColors, val radioButtonFieldColors: RadioButtonFieldColors, val groupElementColors: GroupElementColors, val attachmentsElementColors: AttachmentsElementColors)
A color scheme that holds all the color parameters for a FeatureForm.
The scheme provides default values for all colors as a starting point for customization. These defaults are populated using MaterialTheme.
Any nested elements within a GroupFormElement will also use the same color scheme specified as part of this class.
Use FeatureFormDefaults.colorScheme to create a new instance with the default values.
Since
200.5.0
Constructors
Link copied to clipboard
constructor(editableTextFieldColors: EditableTextFieldColors, readOnlyFieldColors: ReadOnlyFieldColors, radioButtonFieldColors: RadioButtonFieldColors, groupElementColors: GroupElementColors, attachmentsElementColors: AttachmentsElementColors)
Properties
Link copied to clipboard
The color scheme to use for any Attachments elements.
Link copied to clipboard
The color scheme for the editable text field types.
Link copied to clipboard
The color scheme to use for any Group elements.
Link copied to clipboard
The color scheme for the radio button field types.
Link copied to clipboard
The color scheme for the read-only field types.