mirror of
https://github.com/taigrr/wails.git
synced 2026-04-02 05:08:54 -07:00
10 lines
163 B
Go
10 lines
163 B
Go
package appoptions
|
|
|
|
// Default options for creating the App
|
|
var Default = &Options{
|
|
Title: "My Wails App",
|
|
Width: 1024,
|
|
Height: 768,
|
|
DevTools: true,
|
|
}
|