PanelLayout

fun PanelLayout(view: EditorSession, modifier: Modifier = Modifier, content: @Composable () -> Unit)

A layout composable that wraps the editor content with top/bottom panels.

Usage:

PanelLayout(view) {
EditorSession(state, onUpdate, modifier = Modifier.weight(1f))
}