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() }