I have a LazyColumn, and my items are leaving/reen...
# compose
m
I have a LazyColumn, and my items are leaving/reentering the composition (remembered animations keep restarting) with:
Copy code
LazyColumn {
	for(it in list) {
		item(key = { it.id }) {
			Item(it)
		}
	}
}
Where this way it works correctly:
Copy code
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?
s
Nothing wrong with the first version, it should be identical (aside from minor perf differences) Please file a bug
m