-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
73 lines (64 loc) · 1.11 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package main
import (
"flag"
"gioui.org/app"
"gioui.org/font/gofont"
"gioui.org/io/system"
"gioui.org/layout"
"gioui.org/op"
"gioui.org/unit"
"gioui.org/widget/material"
page "giowidgets/pages"
"giowidgets/pages/about"
"giowidgets/pages/clock"
"log"
"os"
"time"
)
var (
tick chan bool
)
func main() {
flag.Parse()
tick = make(chan bool)
go func() {
for {
tick <- true
time.Sleep(time.Second)
}
}()
go func() {
w := app.NewWindow(
app.Title("MyGioApp"),
app.Size(unit.Dp(600), unit.Dp(500)),
)
if err := loop(w); err != nil {
log.Fatal(err)
}
os.Exit(0)
}()
app.Main()
}
func loop(w *app.Window) error {
th := material.NewTheme(gofont.Collection())
var ops op.Ops
router := page.NewRouter()
router.Register(1, clock.New(&router))
router.Register(2, about.New(&router))
for {
select {
case e := <-w.Events():
switch e := e.(type) {
case system.DestroyEvent:
return e.Err
case system.FrameEvent:
gtx := layout.NewContext(&ops, e)
router.Layout(gtx, th)
e.Frame(gtx.Ops)
}
case p := <-tick:
clock.Tick = p
w.Invalidate()
}
}
}