recompose
recompose copied to clipboard
Add support for RecyclerView
XML: https://developer.android.com/reference/androidx/recyclerview/widget/RecyclerView
I'm not sure what a good Composable
replacement for it is and whether the conversion will be straight-forward?
The Compose compatible to Recyclerview is Lazyrow and lazy column. Those two composables are one of the main reason I'm writing my next app with compose.
this will be not straight forward data wise, but layout wise it should be pretty much straight forward, since you are have to provide an item layout that can also be transformed.