gioui-gomobile-example/app_state.go
2022-04-15 18:15:31 +02:00

21 lines
387 B
Go

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
}