Files
OrderScheduling/Pods/SwiftEntryKit/Source/Extensions/UIEdgeInsets+Utils.swift
DDIsFriend f0e8a1709d initial
2023-08-18 17:28:57 +08:00

15 lines
213 B
Swift

//
// UIEdgeInsets.swift
// FBSnapshotTestCase
//
// Created by Daniel Huri on 4/21/18.
//
import UIKit
extension UIEdgeInsets {
var hasVerticalInsets: Bool {
return top > 0 || bottom > 0
}
}