Can I somehow measure `LazyColumn` with an Infinit...
# compose
d
Can I somehow measure
LazyColumn
with an Infinite-constraint? Usecase: I have a low number of items and use a
LazyColumn
to leverage some custom API/library (for example draggable/reorderable items support, custom animations etc), and I want to put it inside a scrollable container and there's no way around this. Currently
LazyColumn
throws if measured with
Constraint.Infinite
. When we were using
RecyclerView
it allowed
wrap_content
at the cost of disabling any recycling support. Any options to achieve this in Compose?