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

@@ -200,8 +200,8 @@ struct SmallWidgetView: View {
// Main stats - weekly attempts and sessions
VStack(spacing: 16) {
HStack(spacing: 8) {
Image(systemName: "flame.fill")
.foregroundColor(.orange)
Image(systemName: "hand.raised.fill")
.foregroundColor(.green)
.font(.title2)
Text("\(entry.weeklyAttempts)")
.font(.title)
@@ -255,8 +255,8 @@ struct MediumWidgetView: View {
HStack(spacing: 40) {
VStack(spacing: 8) {
HStack(spacing: 8) {
Image(systemName: "flame.fill")
.foregroundColor(.orange)
Image(systemName: "hand.raised.fill")
.foregroundColor(.green)
.font(.title2)
Text("\(entry.weeklyAttempts)")
.font(.title)

View File

@@ -54,8 +54,8 @@ struct SessionStatusLiveLiveActivity: Widget {
.fontWeight(.bold)
.monospacedDigit()
HStack(spacing: 4) {
Image(systemName: "flame.fill")
.foregroundColor(.orange)
Image(systemName: "hand.raised.fill")
.foregroundColor(.green)
.font(.caption)
Text("\(context.state.totalAttempts)")
.font(.caption)
@@ -129,8 +129,8 @@ struct LiveActivityView: View {
HStack(spacing: 20) {
VStack(alignment: .leading, spacing: 4) {
HStack(spacing: 6) {
Image(systemName: "flame.fill")
.foregroundColor(.orange)
Image(systemName: "hand.raised.fill")
.foregroundColor(.green)
.font(.title3)
Text("\(context.state.totalAttempts)")
.font(.title2)