Helllo, I'm working on a UI for a player using Jetpack Compose for Desktop. My goal is to overlay Composables on top of a video player view, but I'm facing some issues.
Scrolling issue: I can't scroll through items in a LazyRow using the mouse. The scrolling works programmatically but does not respond to mouse scroll events.
ps: The reason I am using ComposePanel is due to limitations with SwingPanel, which does not properly handle overlaying Composables on top of it #2926, #1521,
Helllo, I'm working on a UI for a player using Jetpack Compose for Desktop. My goal is to overlay Composables on top of a video player view, but I'm facing some issues.
Here is the core part of my code:
Here are the problems I am facing with this setup:
Transparency problem: The ComposePanel doesn't seem to respect transparency settings on both Windows and Mac platforms. This prevents me from creating the desired UI effects. Related issues have been discussed in https://github.com/JetBrains/compose-multiplatform/issues/1061, https://github.com/JetBrains/compose-multiplatform/issues/2461 ,
Scrolling issue: I can't scroll through items in a LazyRow using the mouse. The scrolling works programmatically but does not respond to mouse scroll events.
ps: The reason I am using ComposePanel is due to limitations with SwingPanel, which does not properly handle overlaying Composables on top of it #2926, #1521,