Issue #611

enum WindowPosition: String, CaseIterable {
    case left
    case top
    case bottom
    case right
}
Picker(selection: $preference.position, label: Text("Position")) {
    ForEach(WindowPosition.allCases, id: \.self) {
        Text($0.rawValue)
    }
}