implement alerts, delete

This commit is contained in:
2026-01-28 23:43:50 +01:00
parent a607e33ce9
commit 93cf6f8483
3 changed files with 51 additions and 9 deletions

View File

@@ -20,6 +20,10 @@ struct StopwatchRow: View {
Text("\(stopwatch.formattedTime(format: settings.timeFormat))")
.font(.largeTitle)
.monospacedDigit()
Text("Laps: \(stopwatch.laps.count + (stopwatch.isRunning ? 1 : 0))")
.font(.caption)
.monospaced()
.foregroundStyle(.secondary)
}
Spacer()