From 377476cda733f35cc5880ee312164833ef59ba5d Mon Sep 17 00:00:00 2001 From: Ray Fix Date: Mon, 10 Jun 2019 15:32:53 -0700 Subject: [PATCH] Drag Me and Long Press were interchanged. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d44f6d..8c8f3d5 100644 --- a/README.md +++ b/README.md @@ -309,7 +309,7 @@ Text("Tap") } ) -Text("Long Press") +Text("Drag Me") .gesture( DragGesture(minimumDistance: 50) .onEnded { _ in @@ -317,7 +317,7 @@ Text("Long Press") } ) -Text("Drag Me") +Text("Long Press") .gesture( LongPressGesture(minimumDuration: 2) .onEnded { _ in