Files
Privado-iOS/iOS/Privado/Sources/Common/DeviceInfoProvider.swift
2021-06-03 22:57:40 +06:00

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
}
}