5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 18:10:48 +08:00
wails/v2/test/disable-resize/main.go
2020-12-06 21:15:23 +11:00

22 lines
346 B
Go

package main
import (
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/options"
)
func main() {
// Create application with options
app := wails.CreateAppWithOptions(&options.App{
Title: "disable resize",
Width: 1024,
Height: 768,
DisableResize: true,
})
app.Bind(newBasic())
app.Run()
}