Reputation: 5283
Is it possible to set the position of the mouse cursor using Flutter for desktop?
I'm sure this is possible using custom plugins, but I'm hoping for a cross-platform Dart solution or an existing plugin.
Upvotes: 2
Views: 661
Reputation: 308
Make a method channel between and call SetCursorPos function on cpp file.
SetCursorPos(int x, int y)
Upvotes: 0