mirror of
https://github.com/metabolist/metatext
synced 2024-12-26 17:52:26 +01:00
14 lines
267 B
Swift
14 lines
267 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct Screen {
|
||
|
static var scale: CGFloat {
|
||
|
#if os(macOS)
|
||
|
return NSScreen.main?.backingScaleFactor ?? 1
|
||
|
#else
|
||
|
return UIScreen.main.scale
|
||
|
#endif
|
||
|
}
|
||
|
}
|