16 lines
313 B
Swift
16 lines
313 B
Swift
//
|
|
// 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
|
|
}
|