luen
12/27/2021, 6:44 PMDavid W
12/27/2021, 6:45 PMModifier.pointerHoverIcon(PointerIcon(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR)))
Casey Brooks
12/27/2021, 7:51 PM.hoverable
modifier for custom styling when hovering
val interactionSource = remember { MutableInteractionSource() }
val isHovered by interactionSource.collectIsHoveredAsState()
Box(Modifier.hoverable(interactionSource)) {
}