Fully updated for Xcode 11.2
When placing one view over another, you can control the way they overlap by using the blendMode()
modifier. This contains a variety of ways you can mix colors together, such as using their difference or using a color burn – these will be familiar if you’ve used Core Graphics or something like Photoshop before.
To demonstrate this we could create a ZStack
with two images inside, where the second has a .multiply
blend mode so that it darkens the colors behind it:
ZStack {
Image("paul-hudson")
Image("example-image")
.blendMode(.multiply)
}
SAVE 20% ON iOS CONF SG The largest iOS conference in Southeast Asia is back in Singapore for the 5th time in January 2020, now with two days of workshops plus two days of talks on SwiftUI, Combine, GraphQL, and more! Save a massive 20% on your tickets by clicking on this link.