SwiftUIDelayedGesture

1.1.0

SwiftUI view modifiers to use gestures inside ScrollView and List.
ciaranrobrien/SwiftUIDelayedGesture

What's New

v1.1.0

2024-04-26T07:24:02Z

Updated Swift 5.10, bug fixes

SwiftUI Delayed Gesture

SwiftUI view modifiers to use gestures inside ScrollView and List.

Demo

.delayedGesture()

Sequences a gesture with a long press and attaches the result to the view, which results in the gesture only receiving events after the long press succeeds.

Usage

Use this view modifier instead of .gesture() to delay a gesture:

ScrollView {
    FooView()
        .delayedGesture(someGesture, delay: 0.2)
}

Parameters

  • gesture: A gesture to attach to the view.
  • mask: A value that controls how adding this gesture to the view affects other gestures recognized by the view and its subviews.
  • delay: A value that controls the duration of the long press that must elapse before the gesture can be recognized by the view.
  • action: An action to perform if a tap gesture is recognized before the long press can be recognized by the view.

.delayedInput()

Attaches a long press gesture to the view, which results in gestures with a lower precedence only receiving events after the long press succeeds.

Usage

Use this view modifier before .gesture() to delay a gesture:

ScrollView {
    FooView()
        .delayedInput(delay: 0.2)
        .gesture(someGesture)
}

Parameters

  • delay: A value that controls the duration of the long press that must elapse before lower precedence gestures can be recognized by the view.
  • action: An action to perform if a tap gesture is recognized before the long press can be recognized by the view.

Requirements

  • iOS 14.0+, watchOS 7.0+
  • Xcode 15.0+

Installation

Contact

@ciaranrobrien on Twitter.

Description

  • Swift Tools 5.10.0
View More Packages from this Author

Dependencies

  • None
Last updated: Mon Apr 29 2024 09:25:30 GMT-0900 (Hawaii-Aleutian Daylight Time)