I need a LazyVerticalStaggeredGrid with two columns, and the elements in a fixed relative position inside the grid.
For example, if I have 4 elements, all collapsed, they will be like this:
| 1 | 2 |
| 3 | 4 |
When the user clicks the first element, it will expand, but I need to keep the third element below it, like this:
| 1 | 2 |
| | 4 |
| _ |
| 3 |
What actually happens is that the third element will move to the forth element’s position, like so:
| 1 | 2 |
| | 3 |
| | 4 |
Is there a way to prevent this shifting the elements from one column to the other?