feat: 隐藏标题栏

- 在 tauri.conf.json 中添加 hiddenTitle 属性,设置为 true
- 此修改实现了无标题栏的窗口样式
This commit is contained in:
Vixalie
2025-08-07 22:17:50 +08:00
parent f1a20d28d0
commit 3d05c9795b

View File

@@ -18,6 +18,7 @@
"minWidth": 1200, "minWidth": 1200,
"minHeight": 800, "minHeight": 800,
"resizable": true, "resizable": true,
"hiddenTitle": true,
"titleBarStyle": "Overlay", "titleBarStyle": "Overlay",
"theme": "Dark" "theme": "Dark"
} }