We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68bfcfe commit 2dd3282Copy full SHA for 2dd3282
Rally/app/src/main/java/com/example/compose/rally/ui/overview/OverviewScreen.kt
@@ -132,6 +132,10 @@ private fun AlertItem(message: String) {
132
Row(
133
modifier = Modifier
134
.padding(RallyDefaultPadding)
135
+ // Regard the whole row as one semantics node. This way each row will receive focus as
136
+ // a whole and the focus bounds will be around the whole row content. The semantics
137
+ // properties of the descendants will be merged. If we'd use clearAndSetSemantics instead,
138
+ // we'd have to define the semantics properties explicitly.
139
.semantics(mergeDescendants = true) {},
140
horizontalArrangement = Arrangement.SpaceBetween
141
) {
0 commit comments