add success haptic and indentation

This commit is contained in:
neon443
2025-06-15 21:24:15 +01:00
parent 5ec16dd67a
commit e4107a2faa
2 changed files with 11 additions and 8 deletions

View File

@@ -43,6 +43,9 @@ struct CompleteEventButton: View {
if progress >= 1 { if progress >= 1 {
withAnimation { completeInProgress = false } withAnimation { completeInProgress = false }
viewModel.completeEvent(&event) viewModel.completeEvent(&event)
#if canImport(UIKit)
UINotificationFeedbackGenerator().notificationOccurred(.success)
#endif
timer.invalidate() timer.invalidate()
progress = 0 progress = 0
} }
@@ -103,10 +106,10 @@ struct CircularProgressView: View {
.stroke( .stroke(
.one, .one,
lineWidth: 5 lineWidth: 5
// style: StrokeStyle( // style: StrokeStyle(
// lineWidth: 5, // lineWidth: 5,
// lineCap: .round // lineCap: .round
// ) // )
) )
.rotationEffect(.degrees(-90)) .rotationEffect(.degrees(-90))
} }