Hi all, I am trying to make my desktop app dark th...
# compose-desktop
o
Hi all, I am trying to make my desktop app dark theme aware. Right now I am struggling to make the title bar follow the system theme. For macOS It works perfect by adding this argument in my gradle file:
Copy code
macOS {
    jvmArgs(
        "-Dapple.awt.application.appearance=system"
    )
}
Is there some equivalent setting to also make it work on Windows? Or maybe some other way to set it in code?
a
For Windows you can try https://github.com/ComposeNativeLook/compose-native-look (it's a fork of ComposeWindowStyler updated by me)
👍 1
o
Thanks, I will check it out