Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
data class TabData<E, T>(val type: E, val data: T)

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

Functions

Link copied to clipboard
fun <E, T> FormatDialogTabRow(currentItem: E, onClick: (E) -> Unit, list: ImmutableList<TabData<E, T>>, modifier: Modifier = Modifier, isScrollable: Boolean = false, createTab: @Composable (TabData<E, T>, Boolean, () -> Unit) -> Unit, content: @Composable () -> Unit)