I think this is a bug. When i add the LazyColumns ...
# compose-web
j
I think this is a bug. When i add the LazyColumns then it doesn't work
Copy code
LazyColumn {
    items(DrawerListItems.size) { index ->
        val state = DrawerListItems[index]
        when (state) {
            is DrawerListState.Header -> DrawerItemHeader(state.title)
            is DrawerListState.Item -> DrawerItem(state.icon, state.type.text)
        }
    }
}
o
Do you mean this issue? https://github.com/JetBrains/compose-multiplatform/issues/3463 there is a workaround. I left a comment.
j
Yep