How does lazy rows resizing behave with dynamic si...
# compose
s
How does lazy rows resizing behave with dynamic sized items? RecyclerView had interesting issues, curious how compose will handle the issue: https://stackoverflow.com/questions/57890199/how-to-set-recycler-height-to-highest-item-in-recyclerview
a
I think it will work similarly to RV with basically doing wrap_content - using the height of the largest currently visible item
s
I see, so still potentially either a clipping effect or a content bounce depending on the visible items? Regardless, I do feel like compose offers a lot more options on combating this compared to RecyclerView