WithHintField
A field wrapper that adds hint choices below the base field. Users can click on hint chips to quickly apply predefined values or execute actions.
Usage
// Adding hints to number fields (like font sizes)
@Preview
@Composable
fun FontSizePreview() = PreviewLab {
val lineHeight: Int = fieldValue {
IntField(label = "Line Height", initialValue = 24)
.withHint(
"Compact" to 18,
"Normal" to 24,
"Relaxed" to 32
)
}
Text("Multi-line text example", lineHeight = lineHeight.sp)
}
// Adding action hints for custom operations
@Preview
@Composable
fun ListPreview() = PreviewLab {
val items: List<String> = fieldValue {
ListField(
label = "items",
elementField = { StringField(label, initialValue) },
initialValue = emptyList(),
)
.withHintAction(
"Add 3 items" to { value = value + listOf("Item A", "Item B", "Item C") },
"Clear" to { value = emptyList() }
)
}
ItemList(items = items)
}Parameters
The type of value managed by the field
The underlying field to wrap with hints
Map of hint labels to their corresponding HintChoice (value or action)
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.