Umid Olimzhanov
10/05/2025, 6:11 AMSebastian Sellmair [JB]
10/06/2025, 3:16 PMAlex Styl
10/08/2025, 5:56 AMRobert Munro
10/08/2025, 7:47 PMkotlin = "2.1.21"
compose = "1.9.0"
composeMultiplatform = "1.9.0"
The file does not exist ActualResourceCollectors.kt - the whole build folder is empty except for one empty folder hub/build/generated/compose/resourceGenerator/kotlin/mainResourceCollectors
generateActualResourceCollectorsForMain task was failed:
java.nio.file.InvalidPathException: Illegal char <?> at index 9: provider(?)/hub/generated/resources/ActualResourceCollectors.kt
at java.base/sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:204)
at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:175)
at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77)
at java.base/sun.nio.fs.WindowsPath.parse(WindowsPath.java:92)
at java.base/sun.nio.fs.WindowsFileSystem.getPath(WindowsFileSystem.java:231)
at java.base/java.nio.file.Path.resolve(Path.java:516)
Thread in Slack Conversationאליהו הדס
10/09/2025, 7:56 AMTrejkaz
10/11/2025, 7:36 PMloadImageBitmap(InputStream) is deprecated. The replacement is the resource API, which is fine for resources, but what if I want to load a user-provided image?Trejkaz
10/12/2025, 2:55 PMadte
10/15/2025, 12:18 AMursus
10/15/2025, 2:38 AMv79
10/15/2025, 5:44 AMToolTipArea to a button on a compose desktop application. It works fine in the running application, but the preview compilation fails - Unresolved reference 'TooltipArea' . Is this something I need to do with expect/actual? Or have I found a bug? I've just updated to compose multiplatform 1.9.1.ursus
10/15/2025, 4:45 PMcompose desktop app? Other then doing less at the start of app - I mean if there isn't some sort of release flag which turns on optimizations like there is on androidursus
10/15/2025, 11:57 PMplugins {
id "org.jetbrains.kotlin.jvm" version "2.2.20"
id "org.jetbrains.kotlin.plugin.compose" version "2.2.20"
id "org.jetbrains.compose" version "1.9.1"
}
//
//
//
fun main(args: Array<String>) = singleWindowApplication {
AppTheme {
...
}
}
@Composable
fun AppTheme(content: @Composable () -> Unit) {
MaterialTheme(
colors = if (isSystemInDarkTheme()) { <-----------------------
darkColors()
} else {
lightColors()
},
) {
Surface(color = MaterialTheme.colors.background, content = content)
}
}
Why is the compose desktop app not reacting to dark mode changes? I'm testing on mac os and windows, and when I toggle the system setting it does nothing.
After restart it picks up the current setting but not during runtime.
Is this known?dhia chemingui
10/16/2025, 3:56 PMval provider = TypefaceFontProviderWithFallback()
val data = Data.makeFromBytes(Res.readBytes("font/cairomedium.ttf"))
val typeface = provider.makeFromData(data)jdemeulenaere
10/18/2025, 7:50 PMjdemeulenaere
10/20/2025, 5:35 PMconfigurations.resolutionStrategy.eachDependency { ... } block to automatically set the versions of my 3P dependencies, and for some reason this doesn't work well in the IDE when syncing my project (e.g. it prints the error Could not find org.jetbrains.compose.runtime:runtime:. and the references don't work) but the code compiles fine with Gradle. Any idea what could be causing this by any chance?Konstantin Kostov Gerry
10/21/2025, 12:45 PMpackageName per platform? I've been trying various combinations but it leads to strange results. For example, setting nativeDistributions.packageName and nativeDistributions.macOS.packageName results in nativeDistributions.packageName being used. If I also set nativeDistributions.windows.packageName the outcome is that the package name for windows is used for all platforms e.g.:
compose.desktop {
application {
mainClass = "org.example.project.MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "org.example.project"
packageVersion = "1.0.0"
macOS {
packageName = "Foo"
}
windows {
packageName = "Bar"
}
}
}
}ursus
10/22/2025, 2:07 PMfun main(args: Array<String>) {
singleWindowApplication(
title = "Git Gooey",
state = WindowState(size = DpSize(width = 1600.dp, 960.dp))
) {
App()
}
}
@Composable
private fun App() {
AppTheme {
Surface(color = MaterialTheme.colorScheme.background) {
MainPanes()
}
}
}
Code I believe is nothing special.
Any way around that?אליהו הדס
10/22/2025, 9:37 PMS.
10/26/2025, 11:29 AMWindowDraggableArea , is it possible to get the Windows window management tools (see screenshot) when moving the app to the top of my screen?אליהו הדס
10/26/2025, 12:32 PMCherrio LLC
10/26/2025, 4:23 PMursus
10/28/2025, 7:27 PMursus
10/29/2025, 2:31 AMursus
10/29/2025, 5:25 PMאליהו הדס
10/30/2025, 7:24 AMNguyen Duc Tuan Minh
10/30/2025, 8:03 AMbj0
10/30/2025, 11:57 PMTooltipArea over a button it completely blocks the button and it becomes unusable. My searching showed a comment from 3 years ago where the only suggestion was to use a custom made alternative. Is the built in one still not really usable?bj0
10/31/2025, 12:38 AMKonstantin Kostov Gerry
11/03/2025, 9:16 AMStefan Oltmann
11/05/2025, 1:37 PM