Would it be possible, to have a `LazyList`, that h...
# compose
p
Would it be possible, to have a
LazyList
, that has image in background, that spans over multiple items in the list, and scrolls together with the items? Any ideas how to implement that?
n
How about 2 lists in a box , top one transparent, back one synchronized with the top one using ListState,
p
But how can I track scroll position? Doesn't the lazy list track scroll state only until the first visible item? 🤔