vds_ios/VDS/Extensions/UIDevice.swift
Matt Bruce 30fe60ddb8 refactored into extension
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-28 11:20:07 -05:00

16 lines
225 B
Swift

//
// UIDevice.swift
// VDS
//
// Created by Matt Bruce on 7/28/22.
//
import Foundation
import UIKit
extension UIDevice {
public static var isIPad: Bool {
UIDevice.current.userInterfaceIdiom == .pad
}
}