Forked from gabrieltheodoropoulos/PressActionsModifier.swift
Created
November 22, 2022 19:06
-
-
Save wzbozon/c3354a5b46ca2520910a43fefc845443 to your computer and use it in GitHub Desktop.
PressActions modifier - Handle press and release events in SwiftUI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct PressActions: ViewModifier { | |
var onPress: () -> Void | |
var onRelease: () -> Void | |
func body(content: Content) -> some View { | |
content | |
.simultaneousGesture( | |
DragGesture(minimumDistance: 0) | |
.onChanged({ _ in | |
onPress() | |
}) | |
.onEnded({ _ in | |
onRelease() | |
}) | |
) | |
} | |
} | |
extension View { | |
func pressAction(onPress: @escaping (() -> Void), onRelease: @escaping (() -> Void)) -> some View { | |
modifier(PressActions(onPress: { | |
onPress() | |
}, onRelease: { | |
onRelease() | |
})) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment