Anyone noticed links behaving differently in compo...
# compose
m
Anyone noticed links behaving differently in compose 1.9.1? When I use:
Copy code
val 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:
Copy code
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?
l
Yes, styling support and integration with Material was added, so links use the correct styling by default
thank you color 1