WIP
This commit is contained in:
@@ -45,7 +45,7 @@ struct ExerciseListView: View {
|
|||||||
supersetIndex == bridgeModule.currentExerciseInfo.supersetIndex &&
|
supersetIndex == bridgeModule.currentExerciseInfo.supersetIndex &&
|
||||||
exerciseIndex == bridgeModule.currentExerciseInfo.exerciseIndex {
|
exerciseIndex == bridgeModule.currentExerciseInfo.exerciseIndex {
|
||||||
Image(systemName: "figure.run")
|
Image(systemName: "figure.run")
|
||||||
.foregroundColor(.green)
|
.foregroundColor(Color("appColor"))
|
||||||
}
|
}
|
||||||
|
|
||||||
Text(supersetExecercise.exercise.extName)
|
Text(supersetExecercise.exercise.extName)
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ struct WorkoutDetailView: View {
|
|||||||
}, label: {
|
}, label: {
|
||||||
Image(systemName: "arrow.triangle.2.circlepath.camera.fill")
|
Image(systemName: "arrow.triangle.2.circlepath.camera.fill")
|
||||||
.frame(width: 44, height: 44)
|
.frame(width: 44, height: 44)
|
||||||
|
.foregroundColor(Color("appColor"))
|
||||||
})
|
})
|
||||||
.foregroundColor(.blue)
|
.foregroundColor(.blue)
|
||||||
.cornerRadius(4)
|
.cornerRadius(4)
|
||||||
@@ -76,6 +77,7 @@ struct WorkoutDetailView: View {
|
|||||||
}, label: {
|
}, label: {
|
||||||
Image(systemName: "info.circle.fill")
|
Image(systemName: "info.circle.fill")
|
||||||
.frame(width: 44, height: 44)
|
.frame(width: 44, height: 44)
|
||||||
|
.foregroundColor(Color("appColor"))
|
||||||
})
|
})
|
||||||
.foregroundColor(.blue)
|
.foregroundColor(.blue)
|
||||||
.cornerRadius(4)
|
.cornerRadius(4)
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ struct AllWorkoutPickerView: View {
|
|||||||
Image(systemName: "figure.strengthtraining.traditional")
|
Image(systemName: "figure.strengthtraining.traditional")
|
||||||
.padding(.trailing)
|
.padding(.trailing)
|
||||||
})
|
})
|
||||||
.tint(.blue)
|
.tint(Color("appColor"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ struct CountdownView: View {
|
|||||||
HStack {
|
HStack {
|
||||||
if bridgeModule.currentExerciseTimeLeft >= 0 && duration > bridgeModule.currentExerciseTimeLeft {
|
if bridgeModule.currentExerciseTimeLeft >= 0 && duration > bridgeModule.currentExerciseTimeLeft {
|
||||||
ProgressView(value: Float(bridgeModule.currentExerciseTimeLeft), total: Float(duration))
|
ProgressView(value: Float(bridgeModule.currentExerciseTimeLeft), total: Float(duration))
|
||||||
.tint(.green)
|
.tint(Color("appColor"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,11 +21,10 @@ struct ExtExerciseList: View {
|
|||||||
HStack {
|
HStack {
|
||||||
if supersetExecerciseIdx == allSupersetExecerciseIndex {
|
if supersetExecerciseIdx == allSupersetExecerciseIndex {
|
||||||
Image(systemName: "figure.run")
|
Image(systemName: "figure.run")
|
||||||
.foregroundColor(.green)
|
.foregroundColor(Color("appColor"))
|
||||||
.font(Font.system(size: 55))
|
.font(Font.system(size: 55))
|
||||||
.minimumScaleFactor(0.01)
|
.minimumScaleFactor(0.01)
|
||||||
.lineLimit(1)
|
.lineLimit(1)
|
||||||
.foregroundColor(.green)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Text(supersetExecercise.exercise.name)
|
Text(supersetExecercise.exercise.name)
|
||||||
|
|||||||
Reference in New Issue
Block a user