Composable Function

SpatialMainPanel

A composable that renders the Activity's main window's 2D UI content, defined in androidx.activity.compose.setContent, as a panel in a Subspace.

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free

SpatialMainPanelSample

public fun SpatialMainPanelSample() {
    @Composable
    fun MainPanelContent() {
        Text("Main panel")
    }
    @Composable
    fun AppContent() {
        // 2D Content rendered to the main panel.
        MainPanelContent()
        // Spatial content rendered in full space mode.
        Subspace {
            SpatialRow {
                SpatialPanel { Text("Spatial panel") }
                SpatialMainPanel()
            }
        }
    }
}