Syed Safdar Ali
Syed Safdar Ali

Reputation: 41

Can I move the mouse pointer in flutter desktop

I am building a virtual mouse kind of app, so is there any way in flutter by which I can move the mouse pointer to a specific coordinate on the screen. I know there is a Robot class in java which can do the exact thing, so is there something similar in Flutter(Dart) Note: I am not referring to the MouseRegion Widget kind of stuff

Upvotes: 2

Views: 1088

Answers (1)

smorgan
smorgan

Reputation: 21599

There is no such functionality built into Flutter, but you could write a plugin that would do that.

Upvotes: 0

Related Questions