Files
Woka_Native_iOS/WOKA/Helpers/UIApplication/UIApplication.swift
BilalKhanWDI 95ae60c464 - Added the network library with proper versioning
- Made the network adapter
- Made the config file to hold the url auth
2024-05-07 11:14:02 +05:30

23 lines
453 B
Swift

//
// UIApplication.swift
// WOKA
//
// Created by MacBook Pro on 06/05/24.
//
import UIKit
extension UIApplication {
var mainKeyWindow: UIWindow? {
get {
if #available(iOS 13, *) {
return connectedScenes
.flatMap { ($0 as? UIWindowScene)?.windows ?? [] }
.first { $0.isKeyWindow }
} else {
return keyWindow
}
}
}
}