The following code results in a blue button with a black checkmark. The checkmark should be white.
Image(systemName: "checkmark")
.frame(width:34, height: 34, alignment: .center)
.background(.blue)
.foregroundStyle(.white)
.cornerRadius(17)
I also tried .foregroundColor(.white). I get the same results.