Bug report best practices: https://github.com/xamarin/Xamarin.Forms/wiki/Submitting-Issues
Xamarin.Forms for macOS is not triggering Released when a button is clicked.
Event is triggered
Event is never triggered
None
None
Adding small app to repo report.
This is likely not a bug, but a side effect of NSButton. NSButton does not trigger mouseUp in any way by default. NSButton appears to use a Mouse-Tracking Loop approach as there is documentation about being able to periodically triggering a method as long as the button is held. To get around this, custom NSButton and ViewRenderer implementations can be used where the custom NSButton uses the Three-Method Approach, allowing the button to fire mouse-up, mouse-down, and drag actions. This means using non-standard event handlers to handle each of the mouse event types though. If the team accepts this as the answer, close the issue.
Attaching updated app for example of custom NSButton
I will be attempting a fix to properly trigger the button pressed and button released for mac OS