mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 15:49:58 +08:00
18 lines
386 B
Go
18 lines
386 B
Go
package options
|
|
|
|
import "github.com/wailsapp/wails/v2/pkg/options/mac"
|
|
|
|
// Default options for creating the App
|
|
var Default = &App{
|
|
Title: "My Wails App",
|
|
Width: 1024,
|
|
Height: 768,
|
|
DevTools: true,
|
|
RGBA: 0xFFFFFFFF,
|
|
Mac: &mac.Options{
|
|
TitleBar: mac.TitleBarDefault(),
|
|
Vibrancy: mac.NSAppearanceNameAqua,
|
|
WebviewIsTransparent: false,
|
|
},
|
|
}
|