Oleksandr Karpovich

Results 114 comments of Oleksandr Karpovich

Could you please submit this issue into Google's issue tracker https://issuetracker.google.com/issues/new?component=612128 ?

reproduced also with older versions (didn't find a version where it worked) when using `androidx.compose.foundation.lazy.grid.LazyGridState` anywhere in the source code.

the change in androidx/compose that revealed the issue: LazyGridLayoutInfo was interface, but became sealed interface ``` - interface LazyGridLayoutInfo { + sealed interface LazyGridLayoutInfo { ``` https://youtrack.jetbrains.com/issue/KT-54028/Using-private-object-implementing-a-sealed-interface-causes-a-linker-error

could you please try with compose 1.2.0-alpha01-dev774?

Could you please add a snippet how you would use `remember` in style or attrs blocks?

```kotlin Div({ val color by remember { derivedStateOf { if (colorFlip) { Color.green } else Color.red } } style { backgroundColor(color) } }) } ``` Perhaps, I'm missing something in...

To achieve what you need, would something like below snippet be helpful? ```kotlin Div(attrs = { val id = composableCalculation { // Composable calls are allowed here return@composableCalculation remember {...

> individual UI elements can consume key events before it reaches the window-level handler and it is explicitly stated in Modifier.onKeyEvent() In your [example](https://github.com/dzirbel/compose-playground/tree/e474d230e2d8b753e223a1c05f83a970dbf3fb1e), there is no `Modifier.onKeyEvent { true...

As I understand from the video in the issue description, when selecting the text and the cursor goes to the line with "\`\`\`" , the selection disappears and then reappears...

Some tests failed because of 10 seconds timeout (without a user-friendly report unfortunately). So I tried to play with it in Sample.kt (web-integration-core module, fun main). It seems that, for...