How do I set the starting value to the text "Please Select One" inside the picker. Currently it defaults to the first choice in the array.
This is the state
@State var Choioce = 0
This is the picker
var settings = ["ch1", "ch2", "ch3"]
Picker("Options", selection: $Choioce) {
Text("Please Select One")
ForEach(0 ..< settings.count) { index in
Text(self.settings[index])
.tag(index)
}
}
