Hello, do you know if there was any change related to the a11y on the iOS in latest release of comp...
m
Hello, do you know if there was any change related to the a11y on the iOS in latest release of compose (1.9.0)? My whole test suite stops working, and it looks like the issue fixed in 1.7.0 comes back - but there was no info about a11y changes in latest release notes. https://youtrack.jetbrains.com/issue/CMP-7024/Accessibility-for-compound-layouts-is-not-working-on-iOS-correctly My composable like:
Copy code
Card(modifier = Modifier.testTag("card").clickable {}) {
    Text("Foo", modifier = Modifier.testTag("title"))
    Text("Bar", modifier = Modifier.testTag("subtitle"))
}
stops working, whats more - the “Foo” nor “Bar” is not exposed as “label” on the iOS. I tried juggling with
mergeDescendants
but nothing helps. Any idea how to have both the clickable container and the accessibility access to the inner components?
i
сс @Andrei Salavei
👍 1