summaryrefslogtreecommitdiff
path: root/Jel/Extensions/UIScreenWidthExtension.swift
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2024-02-21 12:20:24 -0500
committerShav Kinderlehrer <[email protected]>2024-02-21 12:20:24 -0500
commitce0be87c7f39e9763d835a685cb65eb38c7e68c3 (patch)
treea548887701d035f40923de1838317d213a8a2532 /Jel/Extensions/UIScreenWidthExtension.swift
parent53b079259556532569af3af0e3b15aa887adbfd4 (diff)
downloadjel-ce0be87c7f39e9763d835a685cb65eb38c7e68c3.tar.gz
jel-ce0be87c7f39e9763d835a685cb65eb38c7e68c3.zip
Cleanup + change SignInView to be a sheet
Diffstat (limited to 'Jel/Extensions/UIScreenWidthExtension.swift')
-rw-r--r--Jel/Extensions/UIScreenWidthExtension.swift15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jel/Extensions/UIScreenWidthExtension.swift b/Jel/Extensions/UIScreenWidthExtension.swift
new file mode 100644
index 0000000..6f2f5de
--- /dev/null
+++ b/Jel/Extensions/UIScreenWidthExtension.swift
@@ -0,0 +1,15 @@
+//
+// UIScreenWidthExtension.swift
+// Jel
+//
+// Created by zerocool on 2/14/24.
+//
+
+import Foundation
+import UIKit
+
+extension UIScreen{
+ static let screenWidth = UIScreen.main.bounds.size.width
+ static let screenHeight = UIScreen.main.bounds.size.height
+ static let screenSize = UIScreen.main.bounds.size
+}