mirror of
https://github.com/taigrr/wails.git
synced 2026-04-12 18:11:31 -07:00
25 lines
348 B
Plaintext
25 lines
348 B
Plaintext
package main
|
|
|
|
import (
|
|
wails "github.com/wailsapp/wails"
|
|
)
|
|
|
|
var html = `
|
|
<div style='text-align:center'>
|
|
<h1> Custom </h1>
|
|
Welcome to your basic Wails app with added CSS!
|
|
</div>
|
|
`
|
|
|
|
func main() {
|
|
|
|
// Initialise the app
|
|
app := wails.CreateApp(&wails.AppConfig{
|
|
Width: 800,
|
|
Height: 600,
|
|
Title: "{{.Name}}",
|
|
HTML: html,
|
|
})
|
|
app.Run()
|
|
}
|