Colton Idle
06/13/2022, 8:26 PMtotalHeightOfFirstAndSecondItemInLazyCol
.
Box {
Box(fillMaxWidth().height(totalHeightOfFirstAndSecondItemInLazyCol)
LazyColumn() { //all items are different sizes }
}
ste
06/13/2022, 8:40 PMlazyListState.layoutInfo.visibleItemsInfo.let {
it.getOrNull(0)?.size?.plus(it.getOrNull(1)?.size ?: 0) ?: 0
}
?Colton Idle
06/13/2022, 8:55 PM