Marek Niedbach
09/17/2025, 3:05 PMCard(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?Ivan Matkov
09/17/2025, 3:16 PM