mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
16 lines
323 B
Swift
16 lines
323 B
Swift
import CoreGraphics
|
|
|
|
struct Screen {
|
|
let size: CGSize
|
|
let scale: CGFloat
|
|
|
|
static func makeForScale(_ scale: CGFloat) -> Screen {
|
|
switch scale {
|
|
case 2:
|
|
Screen(size: CGSize(width: 375, height: 667), scale: scale)
|
|
default:
|
|
Screen(size: CGSize(width: 414, height: 736), scale: scale)
|
|
}
|
|
}
|
|
}
|