Skip to content

Commit 837deb9

Browse files
committed
edit
1 parent a8fd492 commit 837deb9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dg-muscle-ios/sources/Presentation/History/View/Form/Manage/GoalView.swift

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ struct GoalView: View {
3535
} footer: {
3636
if goal.achive {
3737
Text("You did it!").foregroundStyle(.green)
38+
} else {
39+
Text("Long press to toggle")
3840
}
3941
}
4042
}

dg-muscle-ios/sources/Presentation/History/View/Form/Manage/ManageRecordView.swift

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public struct ManageRecordView: View {
3737
if let mode = viewModel.traingMode {
3838
if let goal = viewModel.goal ?? viewModel.strengthGoal {
3939
GoalView(goal: goal, color: viewModel.color, trainingMode: mode)
40+
.contentShape(Rectangle())
4041
.onTapGesture {
4142
URLManager.shared.open(url: "dgmuscle://managetraingmode")
4243
}

0 commit comments

Comments
 (0)