Components
2 free copies left todaySign in
Components/Fitness/Activity Rings
Activity Rings
Rendered from the real SwiftUI via ImageRenderer

Activity Rings

NFrom Nibware - Original components, crafted in-house.

Three concentric activity rings with move, exercise and stand goals.

Fitness52 linesSwiftUIiOS 17+

The actual source

Activity Rings · Swift
ActivityRings.swift
import SwiftUI

let ftRed = Color(red: 0.98, green: 0.13, blue: 0.35)

let ftGreen = Color(red: 0.52, green: 0.90, blue: 0.16)

let ftBlue = Color(red: 0.12, green: 0.88, blue: 0.92)

extension View {
    func ftCard(_ w: CGFloat, _ pad: CGFloat = 18) -> some View {
        self.padding(pad).frame(width: w)
            .background(Color(.systemBackground), in: RoundedRectangle(cornerRadius: 20, style: .continuous))
What it needs

Self-contained SwiftUI - system materials, SF Symbols, no external dependencies. This screen also references:

All of it - tokens, sub-views, models - is carried in the copy-paste source above.