Skip to content

Instantly share code, notes, and snippets.

@agugliotta
Last active April 24, 2024 14:00
Show Gist options
  • Save agugliotta/c66ce1f62773888dc0c9f8bcd2dc6980 to your computer and use it in GitHub Desktop.
Save agugliotta/c66ce1f62773888dc0c9f8bcd2dc6980 to your computer and use it in GitHub Desktop.
@Composable //Don't
fun NoteList(notes: List<Note>) {
LazyColumn {
items(notes) { note ->
//...
}
}
}
@Composable //Do instead
fun NoteList(notes: List<Note>) {
LazyColumn {
items( items = notes, key = { note -> note.id ) { note ->
//...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment