Igor Demin
Igor Demin
> This is the stacktrace (bottom left) on clicking that top-level menu when the window is fullscreen: ~`backedLayer.fullscreen` doesn't do anything on Windows/Linux, so this code block shouldn't affect the...
> the code treats this as a signal that the main window should exit its fullscreen mode I am starting to understand. If we have two windows, the second window...
Supporting Java 8 will add some burden. For example we won't be able to use the new API, which was added in JDK 9-11, and we have to live with...
Oh, sorry for confusion. It was closed automatically, even when I wrote "Partially fixed" 🤦. Full official test support is not on roadmap for 1.2, we are just doing small...
> I'd say everything is done but for pressing keys down and release them up That, and: - [methods inside DesktopAssertions](https://github.com/JetBrains/compose-jb/issues/2370) - [dialog testing support](https://github.com/JetBrains/compose-jb/issues/2107) - the main clock advancement...
Yes, it is technically an error for Gradle. This should disable the check: ``` tasks.withType().configureEach { kotlinOptions { freeCompilerArgs += listOf( "-P", "plugin:androidx.compose.compiler.plugins.kotlin:suppressKotlinVersionCompatibilityCheck=true" ) } } ``` It works with...
In 1.1.0-alpha03 you can override it: ``` import androidx.compose.foundation.layout.padding import androidx.compose.material.Text import androidx.compose.runtime.CompositionLocalProvider import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.getValue import androidx.compose.runtime.setValue import androidx.compose.ui.ExperimentalComposeUiApi import androidx.compose.ui.Modifier import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp import androidx.compose.ui.window.LocalWindowExceptionHandlerFactory import...
After reverting [this commit](https://github.com/JetBrains/androidx/commit/b1fbc771c5675eed692fd69fda1653f5147f9594), everything is fine
[The issue in AOSP](https://partnerissuetracker.corp.google.com/issues/238210250)
We only publish it for desktop. For android it should be redirected to the Jetpack Compose published version. I just checked Compose 1.1.1, and it works fine, if we add...