When using `LazyList` it can't produce the consist...
# compose
d
When using
LazyList
it can't produce the consistent scrollbar size, because it doesn't know the full height in advance. This is especially weird on Compose Desktop where there is a
VerticalScrollbar
which could be dragged (and it jumps like crazy). But what if I'd known in advance that I'll have 100 items of this size and 50 items of that size and in certain order. Can I somehow give this info to the
LazyList
so that its scrollbar calculation will be predictable?