As you can see from the image I have a TextField and after list.
TextField
list
The list has a transparent background, I\'m using .listStyle(
.listStyle(
You could use on the background Color.white.opacity(0.01) or Color.clear in your case:
.background( RoundedRectangle(cornerRadius: 5) .fill(Color.white.opacity(0.01))
or
.background( RoundedRectangle(cornerRadius: 5) .fill(Color.clear))