skip to Main Content

Ios swift – Parallax Effect in SwiftUI

I'm trying to reproduce Apple's parallax effect code from their WWDC24 video here but it isn't quite working well. I have the following code: struct AnimalView: View { let imageName: String var body: some View { Image(imageName) .resizable() .frame(width: 300,…

VIEW QUESTION
Back To Top
Search