How does the merging mechanism in the testing work...
# compose
f
How does the merging mechanism in the testing works? Imagining I have a list of :
Copy code
Row {
   Text()
   Checkbox(selected)
}
How can I guarantee that the
Row
gets the correct
semantics
of
selected
that inside the
material.Checkbox
? Is there a way it can inherit that status from the "children" ?
z
You should use
Modifier.selectable
instead of
clickable
to get the right semantics
🙏 1
f
thanks - I will check this out!