Is there a way to implement paginated list in comp...
# compose
a
Is there a way to implement paginated list in compose with flows instead of using mutableStateListOf()?
z
Yes. You can use androidx paging library with the compose module to create flows that you can then observe in a lazy column. https://developer.android.com/jetpack/androidx/releases/paging
a
Yes, that I know of, but I was thinking more like android independent way so that it can be used in KMM.