wip
This commit is contained in:
28
Workouts/Utils/Constants.swift
Normal file
28
Workouts/Utils/Constants.swift
Normal file
@ -0,0 +1,28 @@
|
||||
//
|
||||
// Constants.swift
|
||||
// Workouts
|
||||
//
|
||||
// Created by Claude on 8/8/25.
|
||||
//
|
||||
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
/// Application-wide constants
|
||||
struct Constants {
|
||||
|
||||
/// Default values for new exercises
|
||||
struct ExerciseDefaults {
|
||||
static let sets = 3
|
||||
static let reps = 10
|
||||
static let weight = 40
|
||||
static let weightReminderTimeIntervalWeeks = 2
|
||||
}
|
||||
|
||||
/// UI Constants
|
||||
struct UI {
|
||||
static let defaultSplitColor = "indigo"
|
||||
static let defaultSplitSystemImage = "dumbbell.fill"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user