androidx.compose.runtime.ComposeRuntimeError: Compose Runtime internal error. Unexpected or incorrect use of the Compose internal runtime API (Missed recording an endGroup).
and discovered that by switching
for (item in items) {
to
items.forEach { item ->
it fixed the error. Note: I’m just iterating over enum
values()
for the content of a
Column
, if that’s important. I couldn’t find any other reports or documentation about this, which I find very odd.