APP-iOS3rd / PJ3T2_Mymory

멋쟁이사자처럼 iOS 앱스쿨 3기 팀 프로젝트
10 stars 3 forks source link

[Feat] 아래에서 위 방향으로 DragGesture #219

Closed xohxe closed 7 months ago

xohxe commented 7 months ago

기능 설명

뷰 이동시, 기존에 좌우 방향이 아닌, 아래에서 위 방향으로 제스처를 추가하자.


.gesture(DragGesture(minimumDistance: 0, coordinateSpace: .local)
      .onEnded({ value in
          if value.translation.width < 0 {
              // left
          }

          if value.translation.width > 0 {
              // right
          }
          if value.translation.height < 0 {
              // up
          }

          if value.translation.height > 0 {
              // down
          }
      }))

Todo

요구사항

참고링크