Skip to content

Instantly share code, notes, and snippets.

@damianpetla
Last active September 6, 2020 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damianpetla/003060cac50aedbbf0de47332769d987 to your computer and use it in GitHub Desktop.
Save damianpetla/003060cac50aedbbf0de47332769d987 to your computer and use it in GitHub Desktop.
@Composable
fun LazyList() {
val items = listOf("Dog", "Cat", "Monkey")//1000 of these
LazyColumnFor(items = items) { item ->
Text(text = item)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment