If an item inside a LazyList has several sub-items...
# compose
z
If an item inside a LazyList has several sub-items, does it make any difference if I use a key(stableKey){} when rendering them in terms of it recomposing less if only other sub-items are changed?
a
Sub item you mean multiple types?
Default key is the position, so the answer depends on whether the nonchanging types change their order
z
That makes sense, thank you! The items can change place, it's very rare though.