5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 21:29:09 +08:00
wails/cmd/templates/basic/main.go.template
Lea Anthony aa6b67734b Initial Port
Updated templates
2019-01-08 17:48:37 +11:00

25 lines
342 B
Plaintext

package main
import (
wails "github.com/wailsapp/wails"
)
var html = `
<div style='text-align:center'>
<h1> Basic Template </h1>
Welcome to your basic Wails app!
</div>
`
func main() {
// Initialise the app
app := wails.CreateApp(&wails.AppConfig{
Width: 1024,
Height: 768,
Title: "{{.Name}}",
HTML: html,
})
app.Run()
}