Ferrite-backup/Ferrite/Extensions/UIDevice.swift
kingbri f40f71bca3 Tree: Remove iOS 16 conditionals
iOS 16 is now the minimum version for the project.

Signed-off-by: kingbri <bdashore3@proton.me>
2024-11-27 23:34:26 -05:00

14 lines
227 B
Swift

//
// UIDevice.swift
// Ferrite
//
// Created by Brian Dashore on 2/16/23.
//
import UIKit
extension UIDevice {
var hasNotch: Bool {
UIApplication.shared.currentUIWindow?.safeAreaInsets.bottom ?? 0 > 0
}
}