mycode/IOS/Views/DashboardView.swift
2026-06-18 22:16:28 +09:00

18 lines
383 B
Swift

import SwiftUI
struct DashboardView: View {
var body: some View {
ZStack {
Theme.background.ignoresSafeArea()
Text(String(localized: "tab.dashboard"))
.font(.title)
.foregroundStyle(Theme.primaryText)
}
.navigationTitle(String(localized: "tab.dashboard"))
}
}
#Preview {
DashboardView()
}