mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
23 lines
562 B
Swift
23 lines
562 B
Swift
import SessionUIKit
|
|
|
|
public extension UIView {
|
|
|
|
static func hSpacer(_ width: CGFloat) -> UIView {
|
|
let result = UIView()
|
|
result.set(.width, to: width)
|
|
return result
|
|
}
|
|
|
|
static func vSpacer(_ height: CGFloat) -> UIView {
|
|
let result = UIView()
|
|
result.set(.height, to: height)
|
|
return result
|
|
}
|
|
|
|
static func separator() -> UIView {
|
|
let result = UIView()
|
|
result.set(.height, to: Values.separatorThickness)
|
|
result.backgroundColor = Colors.separator
|
|
return result
|
|
}
|
|
}
|