session-ios/SessionUIKit/Utilities/DeviceUtilities.swift

10 lines
197 B
Swift
Raw Normal View History

2020-11-09 06:03:59 +01:00
import UIKit
2020-01-17 05:53:56 +01:00
2020-06-18 06:41:02 +02:00
public var isIPhone5OrSmaller: Bool {
2020-01-17 05:53:56 +01:00
return (UIScreen.main.bounds.height - 568) < 1
}
2020-06-18 06:41:02 +02:00
public var isIPhone6OrSmaller: Bool {
return (UIScreen.main.bounds.height - 667) < 1
}