You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SemanticsAutoScrollProviderImpl works by trying to find the expected element by matcher and scrolling to it.
But LayzColumn works in a way that there is no element outside the visible screen.
You need to scroll there to have it.
So SemanticsAutoScrollProviderImpl should instead do something like this:
val list = child<KNode> {
addSemanticsMatcher(SemanticsMatcher.keyIsDefined(SemanticsProperties.VerticalScrollAxisRange))
}
list.assertExists()
list.performScrollToNode(matcher)
Where matcher is the original element that we want to find.
The text was updated successfully, but these errors were encountered:
SemanticsAutoScrollProviderImpl
works by trying to find the expected element by matcher and scrolling to it.But LayzColumn works in a way that there is no element outside the visible screen.
You need to scroll there to have it.
So
SemanticsAutoScrollProviderImpl
should instead do something like this:Where
matcher
is the original element that we want to find.The text was updated successfully, but these errors were encountered: