18 lines
383 B
Swift
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()
|
|
}
|