DefaultFieldView

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.

Use me.tbsten.compose.preview.lab.PreviewLabField.Content to customize the UI of the field. me.tbsten.compose.preview.lab.PreviewLabField.View only if you want to customize the UI, including the part that displays the label, using this Composable.

See also