USB-Meter / USB Meter / Views / DeviceHelpView.swift
Newer Older
20 lines | 0.412kb
Bogdan Timofte authored 2 weeks ago
1
//
2
//  BluetoothHelperView.swift
3
//  USB Meter
4
//
5
//  Created by Bogdan Timofte on 07/03/2020.
6
//  Copyright © 2020 Bogdan Timofte. All rights reserved.
7
//
8

            
9
import SwiftUI
10
import CoreBluetooth
11

            
12
struct DeviceHelpView: View {
13
    var body: some View {
14
        List {
15
            Text("Device ON?")
16
            Text("Device has Bluetooth enabled?")
17
            Text("Device allerady connected?")
18
        }
19
    }
20
}