Home Settings

This commit is contained in:
Arkadiusz Fal
2023-05-25 14:28:29 +02:00
parent 12afb31c03
commit 0061bd8c20
26 changed files with 911 additions and 396 deletions

11
Model/WatchModel.swift Normal file
View File

@@ -0,0 +1,11 @@
import SwiftUI
final class WatchModel: ObservableObject {
static let shared = WatchModel()
@Published var historyToken = UUID()
func watchesChanged() {
historyToken = UUID()
}
}