This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
enum ParallaxDirection { | |
case vertical | |
case horizontal | |
case both | |
} | |
private struct ParallaxMotionViewControllerRepresentable<Content: View>: UIViewControllerRepresentable { | |
var content: Content |