Tash
03/14/2021, 5:22 PMmutableStateListOf<Item>()
vs mutableStateOf<List<Item>>()
?
Trying to assess stability/performance in the case of a List
(size ~200) that will undergo random removals/insertions (that will be either displayed in a LazyColumn
or LazyGrid
)Andrey Kulikov
03/14/2021, 10:25 PMTash
03/15/2021, 2:20 AMmutableStateOf<List<Item>>()
itself