feat: Simple bluetooth status indication
This commit is contained in:
13
Sources/scoobytag/ScoobyTagApp.swift
Normal file
13
Sources/scoobytag/ScoobyTagApp.swift
Normal file
@@ -0,0 +1,13 @@
|
||||
import SwiftUI
|
||||
import CoreBluetooth
|
||||
|
||||
@main
|
||||
struct ScoobyTagApp: App {
|
||||
@StateObject private var bluetoothManager = BluetoothManager()
|
||||
var body: some Scene {
|
||||
WindowGroup {
|
||||
ContentView()
|
||||
.environmentObject(bluetoothManager)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user