This commit is contained in:
Trey t
2024-06-17 11:36:24 -07:00
parent abe17f89b2
commit 510e1ad200
4 changed files with 16 additions and 11 deletions

View File

@@ -12,8 +12,10 @@ struct CurrentWorkoutElapsedTimeView: View {
var body: some View {
if bridgeModule.currentWorkoutRunTimeInSeconds > -1 {
Text("\(Double(bridgeModule.currentWorkoutRunTimeInSeconds).asString(style: .positional))")
.font(.title2)
VStack {
Text("\(Double(bridgeModule.currentWorkoutRunTimeInSeconds).asString(style: .positional))")
.font(.title2)
}
}
}
}