SwiftUIのPickerで、選択されている箇所の色がデフォルトでグレーになっていますが、
この色を変更することはできますか?
swift
1struct ContentView: View { 2 @State private var selection = 0 3 4 var body: some View { 5 VStack { 6 Picker(selection: $selection, label: Text("test")) { 7 Text("A") 8 Text("B") 9 Text("C") 10 } 11 .frame(width: 400) 12 } 13 } 14}
回答1件
あなたの回答
tips
プレビュー