Questions tagged [android-compose-lazyfor]

5 questions
17
votes
7 answers

How to create recycler view in Compose Jetpack?

Is there any special way to create recyclerView in Compose Jetpack? Or it is the same as usual?
9
votes
3 answers

Android sticky - footer using jetpack compose: Align footer view to table, until it reaches screen size and then become fixed at the bottom

I want to achieve this using jetpack compose. A is scrollable list of row items. When A is smaller than screen(or parent) size, B(footer) should be placed bellow the last row. When A + B are bigger than screen size, then B becomes fixed at the…
4
votes
3 answers

JetPack Compose Scroll together multiple LazyColumn simultaneously

I want multiple All LazyColumn scroll simultaneously I can't use LazyHorizontalGrid or LazyVerticalGrid because of inner layout what two layout is different. How can i share scrolling in multiple LazyColumn? @Composable fun TableScreen2(list:…
3
votes
1 answer

Pagination for the LazyColumnFor

Jetpack compose released with alpha version and I want to implement paging for the LazyColumnFor compose function. But I can't understand how we can do this because I can't find something to determine scroll position or something similar. Do we have…
1
vote
0 answers

LazyList/LazyGrid is not recomposed

I have LazyList/LazyGrid that collects pagingData from room DB. when a column is updated the LazyList is not recomposing. it recomposes when we scroll the list a bit. then the Ui is updated.