mirror of
https://github.com/bitwarden/ios.git
synced 2026-05-04 00:51:30 -05:00
11 lines
313 B
Swift
11 lines
313 B
Swift
import UIKit
|
|
|
|
/// Helper functions and computed properties extended off the `UIApplication` class.
|
|
///
|
|
extension UIApplication {
|
|
/// Returns the first connected window scene's key window.
|
|
var firstKeyWindow: UIWindow? {
|
|
connectedScenes.compactMap { $0 as? UIWindowScene }.first?.keyWindow
|
|
}
|
|
}
|