gitextract_cy7w_x8f/ ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android/ │ ├── .gitignore │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── settings.gradle │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── kotlin/ │ └── io/ │ └── carius/ │ └── lars/ │ └── ar_flutter_plugin/ │ ├── AndroidARView.kt │ ├── AndroidARViewFactory.kt │ ├── ArFlutterPlugin.kt │ ├── ArModelBuilder.kt │ ├── CloudAnchorHandler.kt │ └── Serialization/ │ ├── Deserializers.kt │ └── Serializers.kt ├── cloudAnchorSetup.md ├── example/ │ ├── .gitignore │ ├── .metadata │ ├── Models/ │ │ └── Chicken_01/ │ │ ├── Chicken_01.gltf │ │ └── license.txt │ ├── README.md │ ├── android/ │ │ ├── .gitignore │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin/ │ │ │ │ │ └── io/ │ │ │ │ │ └── carius/ │ │ │ │ │ └── lars/ │ │ │ │ │ └── ar_flutter_plugin_example/ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res/ │ │ │ │ ├── drawable/ │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21/ │ │ │ │ │ └── launch_background.xml │ │ │ │ ├── values/ │ │ │ │ │ └── styles.xml │ │ │ │ └── values-night/ │ │ │ │ └── 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 │ │ ├── Podfile │ │ ├── Runner/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── LaunchImage.imageset/ │ │ │ │ ├── Contents.json │ │ │ │ └── README.md │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── Runner.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ └── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ ├── lib/ │ │ ├── examples/ │ │ │ ├── cloudanchorexample.dart │ │ │ ├── debugoptionsexample.dart │ │ │ ├── externalmodelmanagementexample.dart │ │ │ ├── localandwebobjectsexample.dart │ │ │ ├── objectgesturesexample.dart │ │ │ ├── objectsonplanesexample.dart │ │ │ └── screenshotexample.dart │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── ios/ │ ├── .gitignore │ ├── Classes/ │ │ ├── ArFlutterPlugin.h │ │ ├── ArFlutterPlugin.m │ │ ├── ArModelBuilder.swift │ │ ├── CloudAnchorHandler.swift │ │ ├── IosARView.swift │ │ ├── IosARViewFactory.swift │ │ ├── JWTGenerator.swift │ │ ├── Serialization/ │ │ │ ├── Deserializers.swift │ │ │ └── Serializers.swift │ │ └── SwiftArFlutterPlugin.swift │ └── ar_flutter_plugin.podspec ├── lib/ │ ├── ar_flutter_plugin.dart │ ├── datatypes/ │ │ ├── anchor_types.dart │ │ ├── config_planedetection.dart │ │ ├── hittest_result_types.dart │ │ └── node_types.dart │ ├── managers/ │ │ ├── ar_anchor_manager.dart │ │ ├── ar_location_manager.dart │ │ ├── ar_object_manager.dart │ │ └── ar_session_manager.dart │ ├── models/ │ │ ├── ar_anchor.dart │ │ ├── ar_hittest_result.dart │ │ └── ar_node.dart │ ├── utils/ │ │ └── json_converters.dart │ └── widgets/ │ └── ar_view.dart ├── pubspec.yaml └── test/ └── ar_flutter_plugin_test.dart