|
Bogdan Timofte
authored
2 weeks ago
|
1
|
//
|
|
|
2
|
// ContentView.swift
|
|
|
3
|
// USB Meter
|
|
|
4
|
//
|
|
|
5
|
// Created by Bogdan Timofte on 01/03/2020.
|
|
|
6
|
// Copyright © 2020 Bogdan Timofte. All rights reserved.
|
|
|
7
|
//
|
|
|
8
|
|
|
|
9
|
//MARK: Bluetooth Icon: https://upload.wikimedia.org/wikipedia/commons/d/da/Bluetooth.svg
|
|
|
10
|
|
|
|
11
|
import SwiftUI
|
|
|
12
|
|
|
|
13
|
struct ContentView: View {
|
|
|
14
|
var body: some View {
|
|
|
15
|
NavigationView {
|
|
Bogdan Timofte
authored
a week ago
|
16
|
SidebarView()
|
|
|
17
|
.navigationBarTitle(Text("USB Meters"), displayMode: .inline)
|
|
Bogdan Timofte
authored
a week ago
|
18
|
}
|
|
|
19
|
}
|
|
Bogdan Timofte
authored
2 weeks ago
|
20
|
}
|