start Settings->Wifi

This commit is contained in:
cuu
2018-10-04 21:16:36 +08:00
parent bac1ee6d40
commit e398324c97
4 changed files with 284 additions and 2 deletions

View File

@@ -10,6 +10,13 @@ import (
"github.com/cuu/LauncherGo/sysgo"
)
type WidgetInterface interface {
Size() (int,int)
NewSize(w,h int)
Coord()(int,int)
NewCoord(x,y int)
}
type Widget struct {
PosX int
PosY int