Ivan Matkov
Ivan Matkov
Outdated, we update regularly. Compose 1.6.1 contains Material 3 1.2.1
For navigation inside compose we have ported jetpack compose navigation - see https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-navigation-routing.html If you need navigate between native screens and compose - use native/platform solution. Supporting back gesture is...
It was fixed in `1.6.0` branch, but we didn't merge this from upstream yet
True, I've already checked this after the merge of Google's fix, but it seems that it requires changes from the multiplatform side too. I'll try to fix it before our...
@babramovitch ```kt System.setProperty("skiko.renderApi", "OPENGL") ```
Make sure that you've set it before initialization ```kt fun main() { System.setProperty("skiko.renderApi", "OPENGL") singleWindowApplication { println("RENDER API: ${window.renderApi}") Box(Modifier.size(200.dp).background(color = Color.Green)) {} } } ```
Also, I've prepared a skiko fix that also should make it better - https://github.com/JetBrains/skiko/pull/923
It sounds very similar to #3147 (fixed in 1.6.10) cc @eymar @shishkin-pavel
Closing as solved in 1.6.10
@bonamanada jfyi `1.6.0-alpha01` is 1.5.x + WASM, it doesn't contain actual 1.6 changes