Mark
10/22/2025, 2:37 PMval link = LinkAnnotation.Clickable(
tag = tag,
linkInteractionListener = linkInteractionListener,
)
withLink(link) {
...
}
in compose 1.9.0 (and earlier) there is no coloring or underscore, but now in 1.9.1 there are both. To workaround this I do:
val link = LinkAnnotation.Clickable(
tag = tag,
styles = TextLinkStyles(),
linkInteractionListener = linkInteractionListener,
)
withLink(link) {
...
}
so that no styling is applied.
Are these two samples supposed to behave differently?Louis Pullen-Freilich [G]
10/22/2025, 2:41 PM