Before iOS 16 picker views take on special behavior when inside forms. They looked like a navigation link which takes you to a new screen where you can choose an option. Since iOS 16 it seems, that this behavior was removed.
Is there a possibility to get the "old" behavior?
e.g. this code
struct ContentView: View {
@State private var selectedValue = "One"
let counts = ["One", "Two", "Three"]
var body: some View {
NavigationView {
Form {
Section {
Picker("Selection", selection: $selectedValue) {
ForEach(counts, id: \.self) {
Text($0)
}
}
}
}
}
}
}
results in this behavior (since iOS 16)
instead of this (before iOS 16)
Thanks!!!


