Files
wails/v2/pkg/options/mac/mac.go
2020-09-24 05:57:32 +10:00

17 lines
368 B
Go

package mac
// Options ae options speific to Mac
type Options struct {
TitleBar *TitleBar
}
// TitleBar contains options for the Mac titlebar
type TitleBar struct {
TitlebarAppearsTransparent bool
HideTitle bool
HideTitleBar bool
FullSizeContent bool
UseToolbar bool
HideToolbarSeparator bool
}