Oleksandr Karpovich
Oleksandr Karpovich
> On WASM in Chrome, the horizontal scroll and mouse thumb button isn't detected. Mouse forward and back are 4 and 3 respectively "horizontal scroll" - do you mean holding...
I'm not sure about this snippet: ``` .onClick(matcher = PointerMatcher.mouse(PointerButton(3)), onClick = { t = "Horizontal Scroll Right" }) .onClick(matcher = PointerMatcher.mouse(PointerButton(4)), onClick = { t = "Horizontal Scroll Left"...
I see. Thanks for sharing more details. `currentEvent.button?.index` is not `1 to 1` mapping to the value from OS (awt). It's remapped for compose purposes [here](https://github.com/JetBrains/compose-multiplatform-core/blob/085c24ab598923cdb859f5a2a997d5464420c56a/compose/ui/ui/src/desktopMain/kotlin/androidx/compose/ui/scene/ComposeSceneMediator.desktop.kt#L718) Probably the internal remapping...
Do you have wasmJs target? What if you try to disable it? Do you have a link to such project?
@alexzhirkevich is your project available on GitHub? Could you please share the link and the branch?
Thanks! Reproduced it in Decompose. But having troubles to reproduce it is a separate simple project. ___ I thought it's somehow caused by web targets. But if I remove only...
@alexzhirkevich Does adding `implementation(deps.jetbrains.kotlinx.kotlinxCoroutinesCore)` explicitly (either to commonMain or androidMain) help in your case too?
Thanks everyone for reproducers! The issue is reported to kotlin - https://youtrack.jetbrains.com/issue/KT-65954 In compose multiplatform 1.6.0 we won't update coroutines versions. Because it's already rc2 and updating a dependency is...
**More info:** pressing Enter causes the cursor to go on the next line (TextField just doesn't show it) adding a println shows in the logs that the actual text value...
> Hi, has this issue been fixed yet? As I just saw #4260. But after upgrading to 1.6.0-rc01 it is still crashing when resizing the window after opening a ModalBottomSheet....