ListField
A field for editing List values with support for dynamic element insertion and deletion.
ListField provides a UI for editing list collections where each element is represented by its own field. Elements can be inserted at any position using insert buttons, and the field automatically maintains correct indices.
Usage
PreviewLab {
val characters by fieldValue {
ListField(
label = "characters",
initialValue = listOf("Alice", "Bob", "Charlie"),
elementField = { StringField(label, initialValue) },
)
}
Text(characters.joinToString(", "))
}Parameters
The type of elements in the list.
Label displayed in the UI for this field.
Initial list value.
Factory function to create a field for each element. Receives ElementFieldScope with the element's label (index) and initial value.
Factory function to create a default value when inserting new elements. Defaults to the first element of initialValue if available.
Constructors
Types
Functions
Composable, which displays the main UI for this Field. If you want to customize the UI, you can override this method in your PreviewLabField to customize the UI.
Default UI implementation of me.tbsten.compose.preview.lab.PreviewLabField.View. Display a label and draw the content below it.
Display the label of PreviewLabField.
Create a PreviewLabField that makes the receiver's PreviewLabField nullable.
Returns a KSerializer for this field's value type, or null if serialization is not supported.
Returns a list of representative values for this field to be used in automated testing.
Helper for UI of Fields that can be input with TextField.
Transforms a MutablePreviewLabField to work with a different value type.
Composable, which displays the entire UI for this Field. If you want to customize the UI, you can override this method in your PreviewLabField to customize the UI. However, in many cases where the UI is customized, overriding the content method is more appropriate.
Adds an "Empty List" hint to a ListField, allowing quick selection of an empty list value.
Adds an "Empty Set" hint to a SetField, allowing quick selection of an empty set value.
Adds hint choices to a MutablePreviewLabField, allowing users to quickly select from predefined values.
Adds hint choices to a MutablePreviewLabField from a Map.
Adds a single action hint to a MutablePreviewLabField.
Adds hint actions to a MutablePreviewLabField, allowing users to execute custom actions.
Adds predefined color hints to a Color field for quick selection.
Wraps this field with a custom me.tbsten.compose.preview.lab.PreviewLabField.serializer implementation.
Wraps this field with a custom me.tbsten.compose.preview.lab.PreviewLabField.valueCode implementation.
Wraps this field with additional composable content.