| 1 |
// |
|
| 2 |
// SidebarDebugSectionView.swift |
|
| 3 |
// USB Meter |
|
| 4 |
// |
|
| 5 | ||
| 6 |
import SwiftUI |
|
| 7 | ||
| 8 |
struct SidebarDebugSectionView: View {
|
|
| 9 |
var body: some View {
|
|
| 10 |
Section(header: Text("Debug").font(.headline)) {
|
|
| 11 |
NavigationLink(destination: MeterMappingDebugView()) {
|
|
| 12 |
SidebarLinkCardView( |
|
| 13 |
title: "Meter Sync Debug", |
|
| 14 |
subtitle: "Inspect meter name sync data and iCloud KVS visibility as seen by this device.", |
|
| 15 |
symbol: "list.bullet.rectangle", |
|
| 16 |
tint: .purple |
|
| 17 |
) |
|
| 18 |
} |
|
| 19 |
.buttonStyle(.plain) |
|
| 20 |
} |
|
| 21 |
} |
|
| 22 |
} |