Zoltan Demant
11/28/2021, 10:27 AMLazyList
with a column that contains several sub-items (e.g. inside a card). How can I optimize it such that the nested items arent recomposed all the time? Im seeing 3 recompositions each time the list is recomposed, taking up about 15 ms each; since Im also using a pager, the same process is repeated for pages to the left/right of the current one, effectively taking up 135 ms everytime the list recomposes.@Immutable
• Using `ReusableContent`/`key(x){}` around the column itemsColton Idle
11/28/2021, 6:09 PMZoltan Demant
11/28/2021, 6:52 PMTash
11/28/2021, 9:07 PMZoltan Demant
11/29/2021, 4:45 AMval duration = measureTimeMillis {
// Render stuff
}