feat: Simple bluetooth status indication

This commit is contained in:
2026-06-07 18:27:33 +01:00
commit 61bf63fd14
9 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import SwiftUI
struct ContentView: View {
@EnvironmentObject var bluetoothManager: BluetoothManager
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
Text(bluetoothManager.status)
}
.padding()
}
}