Files
wails/v2/wails.go
2020-09-02 10:36:03 -05:00

30 lines
719 B
Go

package wails
import (
"github.com/wailsapp/wails/v2/internal/app"
"github.com/wailsapp/wails/v2/internal/runtime/goruntime"
)
// Runtime is an alias for the goruntime.Runtime struct
type Runtime = goruntime.Runtime
// Options is an alias for the app.Options struct
type Options = app.Options
// CreateAppWithOptions creates an application based on the given config
func CreateAppWithOptions(options *Options) *app.App {
return app.CreateApp(options)
}
// CreateApp creates an application based on the given title, width and height
func CreateApp(title string, width int, height int) *app.App {
options := &app.Options{
Title: title,
Width: width,
Height: height,
}
return app.CreateApp(options)
}