Sometimes you might need to create a default Picker in SwiftUI but you need to adjust the style a little bit.
To change selected items in Picker you need to use .tint modifier instead of .foregroundColor as you might be used to.
Picker(“”, selection: $item) {
Text(“Text”)
}
.tint(.green)