Danish Ansari
05/05/2023, 3:44 PMLazyColumn
inside LazyColumn
is not allowed in Compose so that’s why I have used Column
(Column’s content are populated with forEach loop) inside the LazyColumn
and it looks quite okay UI wise but the problem arises during recomposition. For eg. even if one out of N item of Column gets recomposed, all N items are getting recomposed. And I believe this will not happen if I used LazyColumn
, so what shall I do in this case?
Short example: https://gist.github.com/mddanishansari/65fed3b80452d5ecff0ee91bd39fbb4bJan
05/05/2023, 7:25 PMChris Sinco [G]
05/06/2023, 2:09 AMDanish Ansari
05/06/2023, 7:53 AMitems(count)
but still getting java.lang.IllegalStateException
as usualDanish Ansari
05/06/2023, 8:01 AMLazyColumn
which contains multiple single items and one of it contains 3-4 grouped items (Collapsible/Expandable view) and each collapsible view contains 3-4 similar items which are populated with List
Jan
05/06/2023, 10:13 AMColton Idle
05/06/2023, 4:52 PMDanish Ansari
05/11/2023, 5:56 AMColton Idle
05/11/2023, 6:28 AM