
Rendered from the real SwiftUI via ImageRenderer
Workout Summary
NFrom Nibware - Original components, crafted in-house.
A workout summary card with metrics and a zone bar.
Fitness32 linesSwiftUIiOS 17+
The actual source
Workout Summary · SwiftWorkoutSummary.swift
import SwiftUI
let ftRed = Color(red: 0.98, green: 0.13, blue: 0.35)
let ftBlue = Color(red: 0.12, green: 0.88, blue: 0.92)
let ftOrange = Color(red: 0.98, green: 0.55, blue: 0.15)
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.


