Last active
August 28, 2024 09:58
-
-
Save joelekstrom/91dad79ebdba409556dce663d28e8297 to your computer and use it in GitHub Desktop.
A view modifier that can reliably detect double clicks on macOS, even in List
This file contains 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
extension View { | |
/// Adds a double click handler this view (macOS only) | |
/// | |
/// Example | |
/// ``` | |
/// Text("Hello") | |
/// .onDoubleClick { print("Double click detected") } | |
/// ``` | |
/// - Parameters: | |
/// - handler: Block invoked when a double click is detected | |
func onDoubleClick(handler: @escaping () -> Void) -> some View { | |
modifier(DoubleClickHandler(handler: handler)) | |
} | |
} | |
struct DoubleClickHandler: ViewModifier { | |
let handler: () -> Void | |
func body(content: Content) -> some View { | |
content.overlay { | |
DoubleClickListeningViewRepresentable(handler: handler) | |
} | |
} | |
} | |
struct DoubleClickListeningViewRepresentable: NSViewRepresentable { | |
let handler: () -> Void | |
func makeNSView(context: Context) -> DoubleClickListeningView { | |
DoubleClickListeningView(handler: handler) | |
} | |
func updateNSView(_ nsView: DoubleClickListeningView, context: Context) {} | |
} | |
class DoubleClickListeningView: NSView { | |
let handler: () -> Void | |
init(handler: @escaping () -> Void) { | |
self.handler = handler | |
super.init(frame: .zero) | |
} | |
required init?(coder: NSCoder) { | |
fatalError("init(coder:) has not been implemented") | |
} | |
override func mouseDown(with event: NSEvent) { | |
super.mouseDown(with: event) | |
if event.clickCount == 2 { | |
handler() | |
} | |
} | |
} |
@hrzjanati there’s an example in the comment:
Text("Hello")
.onDoubleClick { print("Double click detected") }
Can we enable VO + Space to mimic double click action when VO enabled ?
@hrzjanati there’s an example in the comment:
Text("Hello") .onDoubleClick { print("Double click detected") }
Thank's
This works, thanks! I spent days on this.
Glad to help!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
usage?
how to use ?