import SwiftUI struct StatsTabView: View { var body: some View { NavigationStack { EmptyStateView( icon: "chart.bar", message: String(localized: "stats.empty") ) .background(Color.tfBackground) .navigationTitle(String(localized: "tab.stats")) } } } #Preview { StatsTabView() .environment(AppPreferences()) }