auto_desktop 1.0.0
auto_desktop: ^1.0.0 copied to clipboard
This package is suitable for developers who need to automate mouse and keyboard control on Windows systems.
example/auto_desktop_example.dart
import 'package:auto_desktop/auto_desktop.dart';
void main(List<String> args) {
mouseMove(100, 200);
mouseClick();
mouseClick(button: MouseButton.right);
mouseClick(x: 100, y: 100, clicks: 5, speed: 1);
sendCombinationKeys(KeyCode.a, [ModifierKey.ctrl]);
keyDown(ModifierKeyCode.ctrl);
keyUp(ModifierKeyCode.alt);
keyPress(KeyCode.a, 10);
typeString("hello world");
}