This is the code for my content view. As you can see, I've tried both an HStack to contain the TextField, as well as just the TextField on its own. The corner radius doesn't have any bearing on the grey search rectangle - the edges are still perfectly rectangular.
@State var searchText = ""
var body: some View {
ZStack {
//function that's the content argument to ZStack
Color((.systemGreen))
VStack {
Text("App")
.font(.largeTitle)
.foregroundColor(Color.white)
//HStack {
TextField("Searchstring", text: $searchText)
.padding()
.background(Color(.systemGray6))
.padding()
.cornerRadius(12)
//}
// .padding()
// .background(Color(.systemGray6))
// .padding(.horizontal)
// .cornerRadius(12)
}
}
}
}
And this is what the preview looks like, in all cases: corner radius fails to show in preview
The problem is here:
padding
background
gets applied, after thepadding
padding
, after thebackground
cornerRadius
on top ofpadding
As a result, it's the
padding
that gets rounded, not thebackground
.Instead, you want to apply the
cornerRadius
immediately after thebackground
.Result: