feat(tracker): create initial tracker skeleton using Gio

This commit is contained in:
Matias Lahti
2020-11-07 19:50:37 +02:00
parent 5eb7cef889
commit 64fe28a240
6 changed files with 100 additions and 1 deletions

13
go4k/tracker/tracker.go Normal file
View File

@ -0,0 +1,13 @@
package tracker
import "gioui.org/widget"
type Tracker struct {
QuitButton *widget.Clickable
}
func New() *Tracker {
return &Tracker{
QuitButton: new(widget.Clickable),
}
}