eygraber
09/20/2023, 2:49 AMColumn
(specifically not a LazyColumn
) should I be wrapping all of the item composables in a call to key
?Vlad
09/20/2023, 8:19 AMFilip Wiesner
09/20/2023, 12:39 PMshould I be wrapping all of the item composables in a call toDepends if the content of the Column is changing in time or is just displayed and never updated. If you "change order" of the items without using the key, Compose runtime won't see it as a change of order but only as change of input params. So for examplekey
remember
calls will not "move" with the item and will stay on the same place.
I hope it makes sense 😄 I am bad at explaining these thingseygraber
09/20/2023, 2:23 PM