gte/cmd/android-app/screen/screen.go

16 lines
217 B
Go
Raw Normal View History

2022-10-18 16:58:12 +02:00
package screen
import "fyne.io/fyne/v2"
type State struct {
Status string
Tasks []string
Config map[string]string
Logs []string
}
type Screen interface {
Content() fyne.CanvasObject
Refresh(state State)
}