vds_ios/VDS/Extensions/UIDevice.swift
Matt Bruce d60315b74f added comments to UIDevice extension
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-05-26 16:48:41 -05:00

18 lines
310 B
Swift

//
// UIDevice.swift
// VDS
//
// Created by Matt Bruce on 7/28/22.
//
import Foundation
import UIKit
extension UIDevice {
/// Helper property to see if your current device running is an iPad or not
public static var isIPad: Bool {
UIDevice.current.userInterfaceIdiom == .pad
}
}