DemoComponent

data class DemoComponent(val name: String, val category: DemoCategory, val preview: @Composable () -> Unit, val code: String)

Represents a single demo component in the Stylish UI catalog.

Constructors

Link copied to clipboard
constructor(name: String, category: DemoCategory, preview: @Composable () -> Unit, code: String)

Properties

Link copied to clipboard

Category for filtering and grouping.

Link copied to clipboard

Kotlin source code snippet for the component.

Link copied to clipboard

Display name shown on hover.

Link copied to clipboard
val preview: @Composable () -> Unit

Composable that renders the interactive preview.