40 lines
1.1 KiB
Swift
40 lines
1.1 KiB
Swift
//
|
|
// SystemView.swift
|
|
// Cable
|
|
//
|
|
// Created by Stefan Lange-Hegermann on 09.10.25.
|
|
//
|
|
|
|
|
|
import SwiftUI
|
|
import SwiftData
|
|
|
|
struct SystemView: View {
|
|
var body: some View {
|
|
NavigationStack {
|
|
VStack(spacing: 24) {
|
|
Spacer()
|
|
|
|
VStack(spacing: 16) {
|
|
Image(systemName: "square.grid.3x2")
|
|
.font(.system(size: 48))
|
|
.foregroundColor(.secondary)
|
|
|
|
Text("System View")
|
|
.font(.title2)
|
|
.fontWeight(.semibold)
|
|
|
|
Text("Coming soon - manage your electrical systems and panels here.")
|
|
.font(.body)
|
|
.foregroundColor(.secondary)
|
|
.multilineTextAlignment(.center)
|
|
.padding(.horizontal, 48)
|
|
}
|
|
|
|
Spacer()
|
|
Spacer()
|
|
}
|
|
.navigationTitle("System")
|
|
}
|
|
}
|
|
} |