32 lines
713 B
Swift
32 lines
713 B
Swift
//
|
||
// ExerciseRestCard.swift
|
||
// Workouts
|
||
//
|
||
// Created by rzen on 7/23/25 at 4:28 PM.
|
||
//
|
||
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
|
||
//
|
||
|
||
import SwiftUI
|
||
|
||
struct ExerciseRestCard: View {
|
||
let elapsedSeconds: Int
|
||
let afterSet: Int
|
||
|
||
var body: some View {
|
||
VStack(spacing: 20) {
|
||
Text("Resting after set #\(afterSet)")
|
||
.font(.title3)
|
||
.lineLimit(2)
|
||
.minimumScaleFactor(0.5)
|
||
.layoutPriority(1)
|
||
|
||
Text(elapsedSeconds.secondsFormatted)
|
||
.font(.system(size: 48, weight: .semibold, design: .monospaced))
|
||
.foregroundStyle(Color.green)
|
||
}
|
||
.padding()
|
||
}
|
||
}
|
||
|