Panel

data class Panel(val top: Boolean = false, val content: @Composable BoxScope.() -> Unit)

Describes a panel to show above or below the editor content.

Parameters

top

If true, show above the editor; otherwise below.

content

The composable to render inside the panel.

Constructors

Link copied to clipboard
constructor(top: Boolean = false, content: @Composable BoxScope.() -> Unit)

Properties

Link copied to clipboard
Link copied to clipboard