SkillAgentSearch skills...

SwiftUIDelayedGesture

SwiftUI view modifiers to use gestures inside ScrollView and List.

Install / Use

/learn @ciaranrobrien/SwiftUIDelayedGesture
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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 26.0+

Installation

View on GitHub
GitHub Stars38
CategoryDevelopment
Updated4mo ago
Forks1

Languages

Swift

Security Score

87/100

Audited on Nov 7, 2025

No findings