I use default picker style from SwiftUI, and when I choose option, picker row stay selected and has gray background.
Code:
Form inside sheet inside NavigationView
Code:
Code Block Form { Picker(selection: $leftP, label: Text("test")) { Text("1").tag(0) Text("2").tag(1) } }
Form inside sheet inside NavigationView