The BreakPoint
02/13/2023, 2:03 AMlazyColum or lazyRow
I want to make it selectable & unselectable (multi selection) to perform some actions on the selected items.
So in order to make it selectable/unselectable?
What should I use? mutableStateListOf
? or StateFlow<List>
?Colton Idle
02/13/2023, 4:13 AMThe BreakPoint
02/13/2023, 4:45 AMchanjungskim
02/13/2023, 5:04 AMColton Idle
02/13/2023, 1:30 PMasState
method or whatever its called, which technically converts the flow to snapshot state anyway. so you could argue that snapshot state uses less mem because of that.
Personally. i like snapshot state because its easychanjungskim
02/13/2023, 3:32 PMColton Idle
02/13/2023, 3:52 PMcollectAsState()
chanjungskim
02/14/2023, 12:37 AMThe BreakPoint
02/21/2023, 7:43 AM