Marcin Wisniowski
09/16/2024, 9:07 PMLazyColumn {
for(it in list) {
item(key = { it.id }) {
Item(it)
}
}
}
Where this way it works correctly:
LazyColumn {
items(list, key = { it.id }) {
Item(it)
}
}
What's wrong with the first version and how to make it behave like the second one?shikasd
09/16/2024, 10:46 PMMarcin Wisniowski
09/17/2024, 2:15 PM