just as "list" ?
I have a composable with a title, then a
Column
with a few items (rendered with a
forEach
) and then some other text.
When selecting it with TalkBack the screen reader says: "Title, list, some other text".
I wonder why it says "list" for the central
Column
instead of actually expanding on the individual items and reading them out lout.
Is there some way I can control this behavior programmatically? I have tried a few stabs at it using the
.semantics
modifier but couldn't manage to do any meaningful change.