- import CoreGraphics
- enum AppWindow {
- static let width: CGFloat = 1140
- static let height: CGFloat = 720
- static let minWidth: CGFloat = width
- static let minHeight: CGFloat = height
- /// Extra top inset when the window is in macOS full screen (hidden title bar has no safe area there).
- static let fullScreenTopInset: CGFloat = 28
- }
|