summaryrefslogtreecommitdiff
path: root/Jel/Controllers
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2024-02-21 14:45:48 -0500
committerShav Kinderlehrer <[email protected]>2024-02-21 14:45:48 -0500
commit2619848a70d1c1cf366a288dcb889103b7464f1c (patch)
tree9dc2664015f0038d8358f5b2f26dbdd3a828e7ca /Jel/Controllers
parented056435427f8a3699f55ca77adcad6dd3c2f246 (diff)
downloadjel-2619848a70d1c1cf366a288dcb889103b7464f1c.tar.gz
jel-2619848a70d1c1cf366a288dcb889103b7464f1c.zip
Finish ItemSeriesEpisodeIconView + make geo size globally available
Diffstat (limited to 'Jel/Controllers')
-rw-r--r--Jel/Controllers/ScreenSize.swift12
1 files changed, 12 insertions, 0 deletions
diff --git a/Jel/Controllers/ScreenSize.swift b/Jel/Controllers/ScreenSize.swift
new file mode 100644
index 0000000..972d395
--- /dev/null
+++ b/Jel/Controllers/ScreenSize.swift
@@ -0,0 +1,12 @@
+//
+// ScreenSize.swift
+// Jel
+//
+// Created by zerocool on 2/21/24.
+//
+
+import Foundation
+
+class ScreenSize: ObservableObject {
+ @Published var size: CGSize = CGSize(width: 0, height: 0)
+}