21 lines
404 B
Swift
21 lines
404 B
Swift
//
|
|
// DeviceTypeHelper.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Zhandos Bolatbekov on 03.06.2021.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
final class DeviceInfoProvider {
|
|
|
|
static var isIPad: Bool {
|
|
UIDevice.current.userInterfaceIdiom == .pad
|
|
}
|
|
|
|
static var isLandscapeOrienation: Bool {
|
|
UIDevice.current.orientation.isLandscape
|
|
}
|
|
}
|