Swiftgram/submodules/Display/Source/StatusBarHost.swift
2025-06-11 16:59:53 +08:00

14 lines
330 B
Swift

import UIKit
import SwiftSignalKit
public protocol StatusBarHost {
var statusBarFrame: CGRect { get }
var keyboardWindow: UIWindow? { get }
var keyboardView: UIView? { get }
var isApplicationInForeground: Bool { get }
var shouldChangeStatusBarStyle: ((UIStatusBarStyle) -> Bool)? { get set }
}