Frame

@Composable
fun Frame(modifier: Modifier = Modifier, labelXAlign: Float = 0.0f, label: @Composable () -> Unit? = null, child: @Composable () -> Unit)

Creates a org.gnome.gtk.Frame used to surround its child with a decorative frame and an optional label.

Parameters

modifier

Compose Modifier for layout and styling.

labelXAlign

The X alignment of the label widget.

label

The composable widget used as the label.

child

The composable child.