You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like your implementation does not get re-composed if the input data changes. I collect my state from a Kotlin Flow using collectAsState(initialState = emptyList()). The lazy grid initializes with the empty list but does not recompose if the list items change. Probably due to the fact that a simple loop is used to iterate over the items.
I am probably missing something. I'd assume items need to have a fixed height/width to make this work. But even setting
requiredHeight
does not work.The text was updated successfully, but these errors were encountered: