Files
SideStore/SideStoreApp/Sources/SideStoreAppKit/Extensions/UIScreen+CompactHeight.swift

16 lines
281 B
Swift
Raw Normal View History

2019-09-07 15:29:19 -07:00
//
// UIScreen+CompactHeight.swift
// AltStore
//
// Created by Riley Testut on 9/6/19.
// Copyright © 2019 Riley Testut. All rights reserved.
//
import UIKit
2023-03-01 00:48:36 -05:00
extension UIScreen {
2019-09-07 15:29:19 -07:00
var isExtraCompactHeight: Bool {
2023-03-01 00:48:36 -05:00
fixedCoordinateSpace.bounds.height < 600
2019-09-07 15:29:19 -07:00
}
}