Skip to content

Instantly share code, notes, and snippets.

@Ademking
Ademking / readme.md
Last active June 24, 2025 12:43
💚 Android : How to record events and play them using ADB SHELL

1) Know the event name of touchpad :

Run :

adb shell getevent -pl

Search for : "ABS_MT_TRACKING_ID" - example :

@Nash0x7E2
Nash0x7E2 / Allow-multiple-gestures.dart
Last active January 8, 2025 06:09
[DEPRECATED] Sample code on how to enable gesture pass through so that both the parent and the child widget receive the gesture.
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
//Main function. The entry point for your Flutter app.
void main() {
runApp(
MaterialApp(
home: Scaffold(
body: DemoApp(),
),