Open prisacariugeorge opened 3 years ago
This is a hotfix for this problem:
extension Device {
static public var isNotched: Bool {
return isPhone &&
(screen == .inches_5_8 ||
screen == .inches_6_1 ||
screen == .inches_6_5 ||
screen == .inches_5_4 ||
screen == .inches_5_5 ||
screen == .inches_6_7) &&
!(version == .phone8Plus ||
version == .phone7Plus ||
version == .phone6SPlus ||
version == .phone6Plus)
}
}
Devices with case .phone6Plus, .phone6SPlus, .phone7Plus, .phone8Plus: return .inches_5_5
Don't have notch and they are in the static public var isNotched: Bool check