Sets the blend mode for compositing a component with content behind it.
.blendMode(mode: BlendMode)
Image({ url: "overlay.png" })
.resizable()
.blendMode("multiply")
Color("blue")
.frame({ width: 100, height: 100 })
.blendMode("screen")
Text("Blended")
.font("largeTitle")
.foregroundStyle(Color("red"))
.blendMode("overlay")