gioui-gomobile-example/app_state.go

22 lines
387 B
Go
Raw Normal View History

2022-04-15 18:09:46 +02:00
package giouibind
import (
"gioui.org/app"
"github.com/empathicqubit/giouibind/native"
)
type AppSettings struct {
}
type AppState struct {
settings *AppSettings
window *app.Window
bluetoothEnabled bool
loaded bool
connected bool
connecting bool
initted bool
deviceName string
nativeBridge native.INativeBridge
}