We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
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) } }
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: