jel/Jel/Models/UIScreenWidthExtension.swift

16 lines
313 B
Swift
Raw Normal View History

2024-02-21 03:18:15 +00:00
//
// 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
}