forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1//
2// Util.swift
3// Pods
4//
5// Created by Hailey on 10/2/24.
6//
7
8class Util {
9 static func getScreenHeight() -> CGFloat? {
10 if let windowScene = UIApplication.shared.connectedScenes.first as? UIWindowScene,
11 let window = windowScene.windows.first {
12 let safeAreaInsets = window.safeAreaInsets
13 let fullScreenHeight = UIScreen.main.bounds.height
14 return fullScreenHeight - (safeAreaInsets.top + safeAreaInsets.bottom)
15 }
16 return nil
17 }
18}