mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-13 09:07:16 +01:00
15 lines
218 B
Swift
15 lines
218 B
Swift
|
//
|
||
|
// UIView.swift
|
||
|
//
|
||
|
//
|
||
|
// Created by MainasuK on 2022-1-17.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
extension UIView {
|
||
|
public static var isZoomedMode: Bool {
|
||
|
return UIScreen.main.scale != UIScreen.main.nativeScale
|
||
|
}
|
||
|
}
|