This file contains hidden or 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 | |
| struct DistortionSampleView: View { | |
| @State private var dragP : CGPoint = .init(x: -1000, y: -1000) | |
| var body: some View { | |
| ZStack { | |
| // Black Background - replace with image, gradient, whatever you like. | |
| Color.black |