Cheers. I’m having issues with the newly introduced
onFirstVisible
modifier and hoping to get some input.
When displaying `Row`s with
horizontalScroll
within a
Column
with
verticalScroll
, vertical scrolls are never considered for triggering the
onFirstVisble
callbacks. Horizontal scrolling still invokes the callbacks when applicable. This only happens if a
Row
is initially considered to be in the viewport (e.g. the
Row
is the first item in the
Column
), otherwise, both scrolling directions work properly with
onFirstVisible
.
Unfortunately I’ve tried to isolate this behavior in a demo project but wasn’t able to. Therefore I’m asking if anyone has an idea of what the underlying issue could be.