| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Control Minecraft on your PC using your phone as a controller!
This project provides a Flutter mobile app that sends UDP commands to a Python backend, which then injects keyboard and mouse inputs into Minecraft.
Clone this repo:
git clone https://github.com/Musaddiq625/minecraft_flutter_controller.git
cd minecraft_controllerFetch dependencies:
flutter pub getRun the app on your device:
flutter run --release(Optional) Build an APK:
flutter build apk --releaseThe app sends UDP packets containing JSON objects.
Example formats:
{ "action": "press", "key": "w" }
{ "action": "click" }
{ "action": "move", "x": 1, "y": -1 }| Command | Description |
|---|---|
| press | Press and release a key (e.g., WASD) |
| click | Single mouse click (attack/use) |
| move | Continuous look/aim movement (dx, dy) |
Check the pubspec.yaml for the full package list. Core dependencies include:
Start the Python backend on your PC:
python main.pyIt will display your local IP address.
Enter the IP and port in the Flutter app’s Settings and tap Connect.
Use the on-screen controls to move, look, jump, attack, open inventory, etc.
This is just a basic proof of concept to spark your creativity! If you can improve or extend it, feel free to fork and submit a PR.
Made with ❤️ by Musaddiq625 — contributions welcome!
| Back | FazBrowse Home | New Git URL |