Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can hide the focus border for Pickers on watchOS using SwiftUI by applying the .focusable(false) modifier to the Picker element. For example:

Picker("Options", selection: $selectedOption) {
   Text("Option 1").tag(1)
   Text("Option 2").tag(2)
}
.focusable(false)

This will disable the focus border for the Picker element.