1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2024-12-12 16:46:32 +01:00
mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/MastodonUI/Extension/UIView.swift
2023-09-27 15:08:12 +02:00

22 lines
406 B
Swift

//
// UIView.swift
//
//
// Created by MainasuK on 2022-4-13.
//
import UIKit
import MastodonCore
extension UIView {
public static var separatorLine: UIView {
let line = UIView()
line.backgroundColor = .separator
return line
}
public static func separatorLineHeight(of view: UIView) -> CGFloat {
return 1.0 / view.traitCollection.displayScale
}
}