android-go/examples/sensors/main.go

87 lines
1.6 KiB
Go
Raw Normal View History

2019-09-17 10:42:01 -04:00
// +build darwin linux
package main
import (
2019-10-07 10:41:51 -04:00
"log"
2019-09-17 10:42:01 -04:00
2019-10-03 11:32:15 -04:00
"gioui.org/app"
2019-10-18 14:40:35 -04:00
"gioui.org/io/system"
2019-10-03 11:32:15 -04:00
"gioui.org/layout"
2020-06-11 10:42:43 -04:00
"gioui.org/op"
2019-10-03 11:32:15 -04:00
"gioui.org/unit"
2019-10-18 14:40:35 -04:00
"gioui.org/widget/material"
2019-09-17 10:42:01 -04:00
"gioui.org/font/gofont"
2019-09-17 10:42:01 -04:00
)
var (
labchan chan string
)
2020-06-11 10:42:43 -04:00
type (
D = layout.Dimensions
C = layout.Context
)
2019-09-17 10:42:01 -04:00
func main() {
labchan = make(chan string)
log.Print("Staring event loop")
go eventloop()
app.Main()
log.Print("App closed")
}
2019-10-18 14:40:35 -04:00
func diffInsets(x, y system.Insets) bool {
2019-10-07 10:41:51 -04:00
return x.Top != y.Top ||
2019-09-17 10:42:01 -04:00
x.Bottom != y.Bottom ||
x.Left != y.Left ||
x.Right != y.Right
}
func eventloop() {
w := app.NewWindow(
2019-10-18 14:40:35 -04:00
app.Size(unit.Dp(400), unit.Dp(400)),
app.Title("Hello"))
2020-06-11 10:42:43 -04:00
th := material.NewTheme(gofont.Collection())
var ops op.Ops
2019-09-17 10:42:01 -04:00
sysinset := &layout.Inset{}
2019-10-03 11:32:15 -04:00
margin := layout.UniformInset(unit.Dp(10))
2020-06-11 10:42:43 -04:00
labels := []material.LabelStyle{}
2019-09-17 10:42:01 -04:00
list := &layout.List{Axis: layout.Vertical}
2019-10-18 14:40:35 -04:00
resetSysinset := func(x system.Insets) {
2019-09-17 10:42:01 -04:00
sysinset.Top = x.Top
sysinset.Bottom = x.Bottom
sysinset.Left = x.Left
sysinset.Right = x.Right
}
2019-10-18 14:40:35 -04:00
go func() {
labchan <- "Starting"
}()
2019-09-17 10:42:01 -04:00
for {
select {
case x := <-labchan:
2020-06-11 10:42:43 -04:00
labels = append(labels, material.Body1(th, x))
2019-09-17 10:42:01 -04:00
case e := <-w.Events():
switch e := e.(type) {
2019-10-18 14:40:35 -04:00
case system.DestroyEvent:
2019-09-17 10:42:01 -04:00
return
2019-10-18 14:40:35 -04:00
case system.FrameEvent:
2020-06-11 10:42:43 -04:00
gtx := layout.NewContext(&ops, e)
2019-09-17 10:42:01 -04:00
resetSysinset(e.Insets)
2020-06-11 10:42:43 -04:00
sysinset.Layout(gtx, func(gtx C) D {
return margin.Layout(gtx, func(gtx C) D {
return list.Layout(gtx, len(labels), func(gtx C, i int) D {
return labels[i].Layout(gtx)
2019-10-10 13:10:58 -04:00
})
2019-10-03 11:32:15 -04:00
})
})
2019-10-18 14:40:35 -04:00
e.Frame(gtx.Ops)
2019-09-17 10:42:01 -04:00
}
}
}
}