21 lines
389 B
Swift
21 lines
389 B
Swift
//
|
|
// Theme.swift
|
|
// damus
|
|
//
|
|
// Created by Ben Weeks on 1/1/23.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
class Theme {
|
|
|
|
static var safeAreaInsets: UIEdgeInsets? {
|
|
return UIApplication
|
|
.shared
|
|
.connectedScenes
|
|
.flatMap { ($0 as? UIWindowScene)?.windows ?? [] }
|
|
.first { $0.isKeyWindow }?.safeAreaInsets
|
|
}
|
|
}
|