(posted this in <#CJLTWPH7S|compose> but have new ...
# compose-android
a
(posted this in #compose but have new info) suddenly seeing some odd behaviour where LazyGridColumn items seem to not be executed. I breakpointed the following lines and
Copy code
categories.forEach { category -> // breakpoint hits
            item(span = { GridItemSpan(2) }) { // breakpoint hits
                Column { // breakpoint doesnt hit
any reason this might be happening? only change is update targetSdk to android-34
a
Compose might skip some of the composable so they will not run. It can also be an issue with the debugger. Can you add
Copy code
SideEffect { Log.d("tag", "ran") }
to validate if its really not running?