Hi,
I am struggling with a design change in watchOS 10.
I have a TextField next to an Image in an HStack inside a List
The following code produces another (correct looking view) when using watchOS9. With watchOS10 a strange background is added that I can not remove.
struct ContentView: View {
@State private var searchFieldInput: String = ""
var body: some View {
List {
HStack{
Image(systemName: "magnifyingglass").foregroundColor(.accentColor)
TextField("Search", text: $searchFieldInput)
}
}
}
}
This picture shows the difference: (watchOS 9 on the left; watchOS 10 on the right
Does anybody know how to remove this background or if this intentionally?
I already filed a Feedback (FB12293618) but haven't heard back yet