blob: 6f2f5de784b3768a2ea6597f19fc2b906ce9ec07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}
|