TabData

data class TabData<E, T>(val type: E, val data: T)

Represents a tab's content and its type for a UI component.

Type Parameters

E

An enum type identifying the tab category.

T

The content associated with the tab.

Constructors

Link copied to clipboard
constructor(type: E, data: T)

Properties

Link copied to clipboard
val data: T
Link copied to clipboard
val type: E