Skip to content

Commit

Permalink
BAL-64-GP-HeartRate_iWatch
Browse files Browse the repository at this point in the history
  • Loading branch information
gperissetcelteeka committed Sep 29, 2023
1 parent df3d053 commit 9879c9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions BalanceWatchApp/Views/ControlsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ struct ControlsView: View {
workoutManager.endWorkout()
} label: {
Image(systemName: "xmark")
.accessibilityHidden(true)
}
.tint(.red)
.font(.title2)
Expand All @@ -27,6 +28,7 @@ struct ControlsView: View {
workoutManager.togglePause()
} label: {
Image(systemName: workoutManager.running ? "pause" : "play")
.accessibilityHidden(true)
}
.tint(.yellow)
.font(.title2)
Expand Down
2 changes: 1 addition & 1 deletion BalanceWatchApp/Views/MetricsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct MetricsView: View {
.foregroundColor(.red)
.frame(height: 40)
.frame(maxWidth: .infinity, alignment: .center)
.accessibilityLabel("heart")
.accessibilityHidden(true)
.scaleEffect(animationAmount)
.animation(
.linear(duration: 0.1)
Expand Down

0 comments on commit 9879c9f

Please sign in to comment.