Skip to content

Instantly share code, notes, and snippets.

View mazefest's full-sized avatar

Colby Mehmen mazefest

  • Stryd
  • Dallas, Tx
View GitHub Profile
@mazefest
mazefest / ActivityRingView.swift
Created January 21, 2024 04:49
Activity Rings
struct ActivityRingView: View {
@Binding var progress: CGFloat
var mainColor: Color = .red
var lineWidth: CGFloat = 20
var endColor: Color {
mainColor.darker(by: 15.0)
}