Search code examples
androidandroid-recyclerviewandroid-jetpack-composeandroid-jetpack-compose-listandroid-compose-lazyfor

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?


Solution

  • Update March 2021: Starting from 1.0.0-beta01

    For example:

    @Composable
    fun LazyRowItemsDemo() {
        LazyRow {
            items((1..1000).toList()) {
                Text(text = "Item $it")
            }
        }
    }