Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard

Functions

Link copied to clipboard
@Composable
fun <T : Any> DraggableChip(text: String, dragData: T, backgroundColor: Color, textColor: Color, modifier: Modifier = Modifier, canAccept: (T) -> Boolean = { true }, onDrop: (T) -> Boolean = { false }, leadingIcon: @Composable () -> Unit? = null, trailingIcon: @Composable () -> Unit? = null)
Link copied to clipboard
@Composable
fun <T : Any> DropZone(modifier: Modifier = Modifier, canAccept: (T) -> Boolean = { true }, onDrop: (T) -> Boolean, content: @Composable BoxScope.(isHovered: Boolean) -> Unit)
Link copied to clipboard
fun <T> DragAndDropEvent.getLocalData(): T?