Accessibility group - Jetpack Compose
In Jetpack Compose, you can group elements by using mergeDescendants
.
This will group all elements within this parent element and they will be focused and read out together.
// Merge all semantics of box elements
Box(modifier = Modifier
.semantics(mergeDescendants = true) { }
) {
// Box content ...
}