mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-16 08:59:29 +08:00
16 lines
337 B
Go
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
|
|
}
|