Is there any way to scroll to a specific item in a...
# compose-android
c
Is there any way to scroll to a specific item in a non-lazy column? Or do I have to convert my list to be lazy?
f
the APIs in
ScrollState
only work in pixels, there is no knowledge of items and their positions. Unless you know the size of the items preceding the one you want to scroll to, you can't do this with
ScrollState
z
BringIntoViewRequester
f
oh, I wasn't aware of that
c
zach, lmaooo. this is actually completely unrelated to another problem I was having... but looks like it'll have the same solution.