Can Korkmaz
07/29/2022, 7:26 AMLazyColumn(
Modifier
.fillMaxSize()
.background(colorResource(id = R.color.colorBackground))
) {
LazyRow(
Modifier
.wrapContentHeight()
.fillMaxWidth()
.background(colorResource(id = R.color.colorBackground)),
listState
) {}
item{}
---------------------------> this is where I want to put swipe refresh, but can't nest a lazyColumn scoping below elements, and don't want to use Column with vertical scroll
item{}
item{}
items(lazyPagingItems){itemComposable(item)}
}