// // KeyboardConst.swift // AiKeyboard // // Created by Destiny on 2025/4/23. // import Foundation import UIKit struct KeyboardConst { // MARK: 2.1、屏幕的宽 /// 屏幕的宽 static var kb_kScreenW: CGFloat { return UIScreen.main.bounds.width } // MARK: 2.2、屏幕的高 /// 屏幕的高 static var kb_kScreenH: CGFloat { return UIScreen.main.bounds.height } }