gitextract_mt_x1c8l/ ├── .gitattributes ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android/ │ ├── .gitignore │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── libs/ │ │ └── hand_tracking_aar.aar │ ├── settings.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── assets/ │ │ ├── hand_landmark.tflite │ │ ├── handtrackinggpu.binarypb │ │ ├── palm_detection.tflite │ │ └── palm_detection_labelmap.txt │ └── kotlin/ │ └── xyz/ │ └── zhzh/ │ └── flutter_hand_tracking_plugin/ │ ├── FlutterHandTrackingPlugin.kt │ └── HandTrackingViewFactory.kt ├── example/ │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android/ │ │ ├── .gitignore │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin/ │ │ │ │ │ └── xyz/ │ │ │ │ │ └── zhzh/ │ │ │ │ │ └── flutter_hand_tracking_plugin_example/ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res/ │ │ │ │ ├── drawable/ │ │ │ │ │ └── launch_background.xml │ │ │ │ └── values/ │ │ │ │ └── styles.xml │ │ │ └── profile/ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ └── settings.gradle │ ├── ios/ │ │ ├── .gitignore │ │ ├── Flutter/ │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.imageset/ │ │ │ │ ├── Contents.json │ │ │ │ └── README.md │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── Runner.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ └── Runner.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── flutter_hand_tracking_plugin/ │ └── android/ │ └── flutter_hand_tracking_plugin.iml ├── flutter_hand_tracking_plugin.iml ├── ios/ │ ├── .gitignore │ ├── Assets/ │ │ └── .gitkeep │ ├── Classes/ │ │ ├── FlutterHandTrackingPlugin.h │ │ └── FlutterHandTrackingPlugin.m │ └── flutter_hand_tracking_plugin.podspec ├── lib/ │ ├── HandGestureRecognition.dart │ ├── flutter_hand_tracking_plugin.dart │ └── gen/ │ ├── landmark.pb.dart │ ├── landmark.pbenum.dart │ ├── landmark.pbjson.dart │ └── landmark.pbserver.dart ├── protos/ │ ├── landmark.proto │ └── regenerate.md └── pubspec.yaml