working on getting watch app to actually work

This commit is contained in:
breadone
2024-07-10 11:44:58 +12:00
parent f2de4ae7cc
commit a174b096fd
14 changed files with 130 additions and 54 deletions

View File

@@ -12,16 +12,5 @@ public struct PreviewData {
private static let lorem = "colon three"
static let project = OCProject(name: "Test Project", color: "007AFF", cards: [
OCCard(content: lorem, index: 0),
OCCard(content: lorem, index: 1),
OCCard(content: lorem, index: 2),
OCCard(content: loreml, index: 3),
OCCard(content: lorem, index: 4),
OCCard(content: lorem, index: 5),
OCCard(content: lorem, index: 6),
OCCard(content: lorem, index: 7),
OCCard(content: lorem, index: 8),
OCCard(content: lorem, index: 9),
])
static let project = OCProject(name: "Test Project", color: "007AFF", tCards: Array<String>(repeating: lorem, count: 10) )
}