mouse_event 0.1.0
mouse_event: ^0.1.0 copied to clipboard
Mouse event plugin for Flutter Desktop(Windows)
mouse_event #
[ScreenRecording]
Flutter Plugin for Windows to catch ALL mouse events, even if you are using other programs;
This Plugin use Windows 's SetWindowsHookEx
API. click the links for details.
WH_KEYBOARD_LL :
Installs a hook procedure that monitors low-level mouse input events. For more information, see the LowLevelMouseProc hook procedure.
Getting Started #
See example demo
// start listening
MouseEventPlugin.startListening((mouseEvent) {
});
// stop listening
MouseEventPlugin.cancelListening();