提交 90977fcf 编写于 作者: 米司特包's avatar 米司特包

feat: add mac option

上级 20559e0d
......@@ -7,12 +7,16 @@ import (
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/logger"
"github.com/wailsapp/wails/v2/pkg/options"
"github.com/wailsapp/wails/v2/pkg/options/mac"
"github.com/wailsapp/wails/v2/pkg/options/windows"
)
//go:embed frontend/dist
var assets embed.FS
//go:embed build/appicon.png
var icon []byte
func main() {
// Create an instance of the app structure
// 创建一个App结构体实例
......@@ -33,29 +37,36 @@ func main() {
Frameless: true,
StartHidden: false,
HideWindowOnClose: false,
RGBA: &options.RGBA{255,255,255,0},
RGBA: &options.RGBA{255, 255, 255, 0},
Assets: assets,
LogLevel: logger.DEBUG,
OnStartup: app.startup,
OnDomReady: app.domReady,
OnShutdown: app.shutdown,
LogLevel: logger.DEBUG,
OnStartup: app.startup,
OnDomReady: app.domReady,
OnShutdown: app.shutdown,
Bind: []interface{}{
app,
},
// Windows platform specific options
// Windows平台特定选项
Windows: &windows.Options{
WebviewIsTransparent: true,
WindowIsTranslucent: true,
DisableWindowIcon: false,
WebviewIsTransparent: true,
WindowIsTranslucent: true,
DisableWindowIcon: false,
},
// Mac platform specific options
// Mac平台特定选项
Mac: &mac.Options{
TitleBar: mac.TitleBarHiddenInset(),
WebviewIsTransparent: true,
WindowIsTranslucent: true,
About: &mac.AboutInfo{
Title: "Wails Template Vue",
Message: "A Wails template based on Vue and Vue-Router",
Icon: icon,
},
},
// Mac: &mac.Options{
// WebviewIsTransparent: true,
// WindowBackgroundIsTranslucent: true,
// TitleBar: mac.TitleBarHiddenInset(),
// },
})
if err != nil {
log.Fatal(err)
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册