Files
SideStore/SideStoreApp/Sources/SideStoreAppKit/Extensions/UIScreen+CompactHeight.swift
2023-03-10 19:30:59 -05:00

16 lines
281 B
Swift

//
// UIScreen+CompactHeight.swift
// AltStore
//
// Created by Riley Testut on 9/6/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import UIKit
extension UIScreen {
var isExtraCompactHeight: Bool {
fixedCoordinateSpace.bounds.height < 600
}
}