SwiftUI | Picker - Change selected row color
问题 I want to change the color of the selected row. As you may see, by default it has this light gray color. I have no idea how to do that since I have found no way to access this row at all. Is there any way to do that? Demo code: struct ContentView: View { var data = Array(0...20).map { "\($0)" } @State private var selected = 0 var body: some View { VStack { Picker("", selection: $selected) { ForEach(0 ..< data.count) { Text(data[$0]) } } } } } A UIKit answer would also be welcomed since I have