Has anyone been able to display 
LazyColumn
 sections as `Card`s like described in 
this thread? I am trying to implement the following design, where each section could contain 100s of items. This is why I’m hesitant to chuck the whole section inside a 
Column
, and loose the benefits of 
LazyColumn
.
A workaround that I’ve used successfully in 
RecyclerView
 earlier, is to use a 
Card
 in each item and modify its corners so that it looks like a whole card when put together. In Compose, however, this workaround produces shadows between every item, as described in the thread I mentioned. That particular 
issue is marked as Won’t Fix (Infeasible).