iOS Swift - User Input and Forms
Identify the error in this SwiftUI Picker code:
Picker("Choose", selection: selectedOption) {
Text("A").tag(0)
Text("B").tag(1)
}