[Swift UI] Gestures And Parallax

App use Gesture and parallax animation, transition view, sound effect

 .gesture(
  DragGesture()
    .onChanged{ gesture in
      if gesture.translation.width > 0 && buttonOffet <= buttonWidth - 80 {
        ....
      }
    }
    .onEnded{ _ in
      .....

    }
  )//: GESTURE

Git: https://github.com/LovePick/swiftUI_gestures_parallax