`SemanticsNodeInteraction.performScrollTo()` docs...
# compose
j
SemanticsNodeInteraction.performScrollTo()
docs say:
Copy code
Scrolls the closest enclosing scroll parent by the smallest amount such that this node is fully visible in its viewport.
but this will not consider if another element is sitting on top of the node. This is the case when you might have a floating action button clamped to the bottom of the screen, calling
performScrollTo()
will scroll the content, but it will still be behind the button. Is there any way to scroll completely to the bottom of a scrollable container?