shapes

@Composable
fun shapes(): DragHandleShapes

Creates a DragHandleShapes that represents the default, pressed, and dragged shapes used in a VerticalDragHandle.


@Composable
fun shapes(shape: Shape? = null, pressedShape: Shape? = null, draggedShape: Shape? = null): DragHandleShapes

Creates a DragHandleShapes that represents the default, pressed, and dragged shapes used in a VerticalDragHandle.

Parameters

shape

provides a different shape to override the default shape of the drag handle when it's not being pressed.

pressedShape

provides a different shape to override the shape of the drag handle when it's being pressed but not dragged.

draggedShape

provides a different shape to override the shape of the drag handle when it's being dragged.