PanelDescriptor

data class PanelDescriptor(val label: StringResolver? = null, val icon: DrawableResolver? = null)

Describes a Panel. This data is typically used so that panels can get information about each other. This data can be used to provide users a way to navigate between panels.

Constructors

Link copied to clipboard
fun PanelDescriptor(label: StringResolver? = null, icon: DrawableResolver? = null)

Properties

Link copied to clipboard
val icon: DrawableResolver? = null

An icon to represent this panel.

Link copied to clipboard
val label: StringResolver? = null

A text representation of this panel.