Ask Your Question
0

How can the color of a selected element (Picker) be modified in SwiftUI for WatchOS?

asked 2022-07-07 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-01-03 00:00:00 +0000

ladyg gravatar image

To modify the color of a selected element (Picker) in SwiftUI for WatchOS, you can use the selectionStyle modifier. Here's an example:

struct ContentView: View {
    @State private var selectedColor = Color.red

    var body: some View {
        Picker("Color", selection: $selectedColor) {
            Text("Red").tag(Color.red)
            Text("Green").tag(Color.green)
            Text("Blue").tag(Color.blue)
        }
        .selectionStyle(.color(selectedColor))
    }
}

In this example, the selectedColor state variable is used to store the currently selected color. The Picker view has three options: red, green, and blue, and each one is tagged with its corresponding color. The selectionStyle modifier is then applied to the Picker view, with the .color style and the selectedColor variable passed in as parameters.

This will cause the selected color to be displayed as the background color of the selected option, making it clear which color is currently selected.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-07-07 11:00:00 +0000

Seen: 13 times

Last updated: Jan 03 '23