ColorField

class ColorField(label: String, initialValue: Color) : MutablePreviewLabField<Color>

A field for selecting colors using an interactive color picker.

Provides a visual color picker interface allowing users to select colors using HSV sliders and alpha channel controls.

Usage

// Basic color picker
@Preview
@Composable
fun ColorPickerPreview() = PreviewLab {
val backgroundColor: Color = fieldValue { ColorField("Background", Color.Blue) }

Box(
modifier = Modifier
.size(100.dp)
.background(backgroundColor)
)
}

// Multiple color fields
@Preview
@Composable
fun MultiColorPreview() = PreviewLab {
val backgroundColor: Color = fieldValue { ColorField("Background", Color.White) }
val textColor: Color = fieldValue { ColorField("Text Color", Color.Black) }

Box(
modifier = Modifier
.size(150.dp)
.background(backgroundColor),
contentAlignment = Alignment.Center
) {
Text("Styled Text", color = textColor)
}
}

// Border color picker
@Preview
@Composable
fun BorderColorPreview() = PreviewLab {
val borderColor: Color = fieldValue { ColorField("Border", Color.Red) }

Box(
modifier = Modifier
.size(100.dp)
.border(3.dp, borderColor)
.background(Color.LightGray)
)
}

Parameters

label

The display label for this field

initialValue

The initial color value

Constructors

Link copied to clipboard
constructor(label: String, initialValue: Color)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val coroutineScope: CoroutineScope
Link copied to clipboard
open override val initialValue: Color

Default value for this field.

Link copied to clipboard
open override val label: String

The label for this field. This is not used in any of the program logic, but only for display purposes, so it is best to set it in a language that is easy for your team members to read.

Link copied to clipboard
open override var value: Color

Current value of this PreviewLabField.

Link copied to clipboard
open override val valueFlow: Flow<Color>

Functions

Link copied to clipboard
open operator override fun component1(): Color
Link copied to clipboard
open operator override fun component2(): (Color) -> Unit
Link copied to clipboard
open override fun Content()

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.

Link copied to clipboard
fun <Value> PreviewLabField<Value>.DefaultFieldView(modifier: Modifier = Modifier, menuItems: List<PreviewLabField.ViewMenuItem<Value>> = ViewMenuItem.defaults<Value>(this), content: @Composable () -> Unit = { Content() })

Default UI implementation of me.tbsten.compose.preview.lab.PreviewLabField.View. Display a label and draw the content below it.

Link copied to clipboard
fun <Value> PreviewLabField<Value>.FieldLabelHeader(menuItems: List<PreviewLabField.ViewMenuItem<Value>> = ViewMenuItem.defaults<Value>(this))

Display the label of PreviewLabField.

Link copied to clipboard
fun <Value : Any> PreviewLabField<Value>.nullable(initialValue: Value? = this.initialValue): NullableField<Value>

Create a PreviewLabField that makes the receiver's PreviewLabField nullable.

Link copied to clipboard
open fun onCleared()
Link copied to clipboard
open override fun serializer(): KSerializer<Color>

Returns a KSerializer for this field's value type, or null if serialization is not supported.

Link copied to clipboard
open override fun testValues(): List<Color>

Returns a list of representative values for this field to be used in automated testing.

Link copied to clipboard
fun <Value> MutablePreviewLabField<Value>.TextFieldContent(toString: (Value) -> String, toValue: (String) -> Result<Value>, modifier: Modifier = Modifier, prefix: @Composable () -> Unit? = null, suffix: @Composable () -> Unit? = null, placeholder: @Composable () -> Unit? = null)

Helper for UI of Fields that can be input with TextField.

Link copied to clipboard

Transforms a MutablePreviewLabField to work with a different value type.

Link copied to clipboard
open override fun valueCode(): String

Returns a Kotlin code string representing the current value of this field.

Link copied to clipboard

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.

Link copied to clipboard

Adds hint choices to a MutablePreviewLabField, allowing users to quickly select from predefined values.

Link copied to clipboard
fun MutablePreviewLabField<String>.withImageUrlHint(includeDummyImages: Boolean = true, includeInvalidImages: Boolean = true): MutablePreviewLabField<String>
Link copied to clipboard

Adds predefined color hints to a Color field for quick selection.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <Value> MutablePreviewLabField<Value>.wrap(wrapRange: WrapRange = WrapRange.OnlyContent, content: @Composable (@Composable () -> Unit) -> Unit): WrapField<Value>

Wraps this field with additional composable content.