Fixed swipe actions and more widgets

This commit is contained in:
2025-09-15 23:34:33 -06:00
parent b53dfb1aa5
commit 70976bc47a
5 changed files with 25 additions and 21 deletions

View File

@@ -30,7 +30,7 @@ struct ClimbingActivityWidget: Widget {
}
DynamicIslandExpandedRegion(.bottom) {
HStack {
Label("\(context.state.totalAttempts)", systemImage: "flame")
Label("\(context.state.totalAttempts)", systemImage: "hand.raised.fill")
Spacer()
Label("\(context.state.completedProblems)", systemImage: "checkmark.circle")
Spacer()
@@ -71,8 +71,8 @@ struct LiveActivityView: View {
.font(.caption)
.foregroundColor(.secondary)
HStack {
Image(systemName: "flame.fill")
.foregroundColor(.orange)
Image(systemName: "hand.raised.fill")
.foregroundColor(.green)
Text("\(context.state.totalAttempts)")
.font(.title3)
.fontWeight(.semibold)