make fn optional in app.Run
This commit is contained in:
parent
34e396271d
commit
a3791b599b
4 changed files with 36 additions and 4 deletions
24
examples/minimal/main.go
Normal file
24
examples/minimal/main.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
|
||||
t "git.iwakura.rip/grng/tiramisu"
|
||||
webview "github.com/webview/webview_go"
|
||||
)
|
||||
|
||||
//go:embed index.html
|
||||
var html string
|
||||
|
||||
func main() {
|
||||
app := t.New(t.TiramisuOptions{
|
||||
Debug: true,
|
||||
Width: 800,
|
||||
Height: 600,
|
||||
Title: "Tiramisu",
|
||||
Hints: webview.HintFixed,
|
||||
})
|
||||
|
||||
app.HTML(html)
|
||||
app.Run()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue