mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
13 lines
246 B
Swift
13 lines
246 B
Swift
#if os(iOS)
|
|
import UIKit
|
|
|
|
public extension UIDevice {
|
|
static var isIPad: Bool {
|
|
UIDevice.current.userInterfaceIdiom == .pad
|
|
}
|
|
|
|
static var isIPhone: Bool {
|
|
UIDevice.current.userInterfaceIdiom == .phone
|
|
}
|
|
}
|
|
#endif
|