java.lang.IllegalArgumentException: LayoutNode@bc99a9c children: 2 measureBlocks: androidx.compose.ui.LayoutKt$measureBlocksOf$1@3018c67 is not ready. layoutState is NeedsRelayout
There is no mention of my code in the stacktrace. I assume it is related to
LazyColumnFor
. I will update this message once I have more information.
Edit: Looks like it is related to usage of new
background
modifier. It was used on a column with dynamic height which is calculated after a image load request.
a
Andrey Kulikov
08/25/2020, 9:32 PM
could you please create a bug with the sample where it is reproducible?
j
jitinsharma
08/30/2020, 5:42 PM
I also got this after updating to alpha-01 with
LazyColumnFor
. Let me know if bug has been raised for this or i can raise one with sample.
h
Halil Ozercan
08/30/2020, 6:08 PM
I haven't had time to file and raise a bug. Please go ahead
👍 1
a
Ali Zargar Shabestari
09/07/2020, 7:05 PM
facing the same problem. I will add more info if I can isolate the problem.
Edit: in my case it has something to do with
.clickable
modifier. I have a
Card
with
Text
inside. when I assign the clickable modifier to the card everything is okay, but as soon as I move the clickable to the
Text
inside. scrolling causes crash with the exception above.