I was reading there is a limitation using coroutin...
# compose
i
I was reading there is a limitation using coroutines at the moment, what is the nature of the problem? I got this
Copy code
Caused by: java.lang.IllegalStateException: Not in a frame
        at androidx.compose.frames.FramesKt.currentFrame(Frames.kt:180)
Is it related? happens when I use
IO
scope and not sure if its just me doing something wrong or I hit a known issue
z
i
Cool saw that but I was not sure if the error was because of that
a
This exception comes from something else (probably), do your
@Model
manipulation on the main dispatcher. Temporary issue that won't have this restriction later.
👍 1
i
@Adam Powell thanks model manipulations on the main dispatcher work thanks