RowBlockHeaderScope
Scope for a row block's header band. Distinct from TableCellScope (not a supertype of it) so a Modifier.draggableHandle call here binds unambiguously to the whole-block (outer unit) engine, while the same call inside a cell binds to whatever engine that row is rendered under.
Functions
Link copied to clipboard
abstract fun applyDraggableHandle(modifier: Modifier, enabled: Boolean = true, interactionSource: MutableInteractionSource? = null, onDragStarted: (startedPosition: Offset) -> Unit = {}, onDragStopped: () -> Unit = {}, dragGestureDetector: DragGestureDetector = DragGestureDetector.Press): Modifier
Returns a Modifier that makes the given UI element a drag handle for the current table item.
Link copied to clipboard
abstract fun applyLongPressDraggableHandle(modifier: Modifier, enabled: Boolean = true, interactionSource: MutableInteractionSource? = null, onDragStarted: (startedPosition: Offset) -> Unit = {}, onDragStopped: () -> Unit = {}): Modifier
Returns a Modifier that makes the given UI element a long-press drag handle for the current table item.