import SwiftUI struct SplashView: View { var body: some View { ZStack { Color.tfBackground.ignoresSafeArea() VStack(spacing: 14) { Image(systemName: "chart.bar.fill") .font(.system(size: 60, weight: .semibold)) .foregroundStyle(Color.tfPrimary) Text("TallyFlow") .font(.system(size: 38, weight: .bold, design: .rounded)) .foregroundStyle(Color.tfOnBackground) Text(String(localized: "splash.tagline")) .font(.subheadline) .foregroundStyle(Color.tfMuted) } } } } #Preview { SplashView() .environment(AppPreferences()) }