I have a `ScrollableColumn` and a `Row` within a `...
# compose
d
I have a
ScrollableColumn
and a
Row
within a
Box
container.
Copy code
Box {
  ScrollableColumn {
  }
  Row {
  }
}
Now when I turn on accessibility, the button inside the row does not get the focus/ or is not clickable(basically does not talk back) till I scroll all the elements in the ScrollableColumn. Does anyone have any idea why this would be the case and how can I force the button inside the Row to be accessible without actually scrolling the whole list?