Files
Companion/Sources/scoobytag/ContentView.swift

17 lines
377 B
Swift

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()
}
}