Files
wails/v2/pkg/options/windows/windows.go
2021-08-01 22:14:56 +10:00

16 lines
337 B
Go

package windows
import (
"embed"
"github.com/wailsapp/wails/v2/pkg/menu"
)
// Options are options specific to Windows
type Options struct {
WebviewIsTransparent bool
WindowBackgroundIsTranslucent bool
DisableWindowIcon bool
Menu *menu.Menu
Assets *embed.FS
}