Files
wails/cmd/templates/basic/main.go.template
2019-01-15 18:52:18 +11:00

26 lines
422 B
Plaintext

package main
import (
wails "github.com/wailsapp/wails"
)
var html = `
<div style='text-align:center'>
<div class="wails-logo" style="width: 25rem;margin: auto;height: 25rem;"></div>
<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()
}