如何在 Compose 桌面中删除 windows 标题栏或对其进行自定义?

How can I remove windows title bar or customize it in compose desktop?

我想删除 windows 默认标题栏,这样我就可以创建自己的与我的应用程序相匹配的标题栏。我四处寻找但找不到任何东西。

谢谢

要删除它,您可以对 Window 使用 undecorated 参数:

fun main() = application {
    Window(
        onCloseRequest = ::exitApplication,
        undecorated = true,
    ) {
        App()
    }
}