Hi all, Is it possible to change the mouse cursor...
# compose-desktop
o
Hi all, Is it possible to change the mouse cursor within a
ClickableText
? I followed the guidelines to achieve clickable links with the help of annotated strings but the click affordance isn't as it could.
e
there is
Modifier.pointerHoverIcon(PointerIcon.Hand)
but that only applies to the whole composable, not individual pieces of clickable text
you could maybe bodge something together with that and
ClickableText(onHover = {})
?
but yeah, it does seem like a missing feature…
o
I don't see
onHover
maybe it's something recent and my version is too old?
so yes, if you don't see it, your version is probably too old
o
Ok thanks I'll check that 👍
415 Views