Update home view
This commit is contained in:
parent
ae9c2ab5b2
commit
d1f603b5e6
@ -39,19 +39,19 @@ struct MetricsContent: View {
|
||||
private var metricsGrid: some View {
|
||||
LazyVGrid(columns: [GridItem(.flexible()), GridItem(.flexible())], spacing: 20) {
|
||||
MetricCard(
|
||||
title: "Words Captured",
|
||||
title: "Words Dictated",
|
||||
value: "\(totalWordsTranscribed)",
|
||||
icon: "text.word.spacing",
|
||||
color: .blue
|
||||
)
|
||||
MetricCard(
|
||||
title: "Voice-to-Text Sessions",
|
||||
title: "VoiceInk Sessions",
|
||||
value: "\(transcriptions.count)",
|
||||
icon: "mic.circle.fill",
|
||||
color: .green
|
||||
)
|
||||
MetricCard(
|
||||
title: "Average Words/Minute",
|
||||
title: "WPM",
|
||||
value: String(format: "%.1f", averageWordsPerMinute),
|
||||
icon: "speedometer",
|
||||
color: .orange
|
||||
|
||||
@ -101,7 +101,7 @@ struct TimeEfficiencyView: View {
|
||||
|
||||
private var timeSavedView: some View {
|
||||
VStack(alignment: .leading, spacing: 8) {
|
||||
Text("TIME SAVED")
|
||||
Text("YOU'VE SAVED ⏳")
|
||||
.font(.system(size: 13, weight: .heavy))
|
||||
.tracking(4)
|
||||
.foregroundColor(.secondary)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user