Seems like LazyColumn has an issue with layout whe...
# compose
m
Seems like LazyColumn has an issue with layout when scrolling, in that if we have defined a shadow for the column, the shadow height is added to column height when an item is being scrolled out at the top. The result is that part of the item sticks out of the shadow-border boundary. Please see the screen shots.
a
You probably need to add a padding of the same size. And in general I would recommend use Surface for adding elevation and put LazyColumn inside this Surface
👍 1