11 lines
267 B
Swift
11 lines
267 B
Swift
import Foundation
|
|
|
|
/// Represents the two visual states of the notch overlay.
|
|
enum NotchState: String {
|
|
/// Compact bar matching the physical notch or menu bar height.
|
|
case closed
|
|
|
|
/// Expanded panel showing content (plain black for now).
|
|
case open
|
|
}
|