Overlay

@Composable
fun Overlay(mainChild: @Composable () -> Unit, modifier: Modifier = Modifier, overlays: @Composable () -> Unit)

Creates a org.gnome.gtk.Overlay that places widgets on top of a single main child.

Parameters

mainChild

The child underneath the overlay.

modifier

Compose Modifier for layout and styling.

overlays

The composable content to display on top of mainChild.