Skip to main content
.blendMode(mode: BlendMode)
mode
BlendMode
required
The blend mode to use when compositing. See BlendMode.

Support

Usage

Multiply blend

Image({ url: "overlay.png" })
    .resizable()
    .blendMode("multiply")

Screen blend for lightening

Color("blue")
    .frame({ width: 100, height: 100 })
    .blendMode("screen")

Overlay blend on text

Text("Blended")
    .font("largeTitle")
    .foregroundStyle(Color("red"))
    .blendMode("overlay")

See Also