├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android └── app │ └── src │ └── main │ └── java │ └── io │ └── flutter │ └── plugins │ └── GeneratedPluginRegistrant.java ├── ios ├── Flutter │ ├── Generated.xcconfig │ └── flutter_export_environment.sh └── Runner │ ├── GeneratedPluginRegistrant.h │ └── GeneratedPluginRegistrant.m ├── lib ├── flutter_runtime.dart └── src │ ├── flutter_runtime.dart │ └── flutter_runtime_call_path.dart ├── linux └── flutter │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── macos └── Flutter │ ├── GeneratedPluginRegistrant.swift │ └── ephemeral │ ├── Flutter-Generated.xcconfig │ └── flutter_export_environment.sh ├── pubspec.yaml └── windows └── flutter ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /ios/Flutter/Generated.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/ios/Flutter/Generated.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/ios/Runner/GeneratedPluginRegistrant.h -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/ios/Runner/GeneratedPluginRegistrant.m -------------------------------------------------------------------------------- /lib/flutter_runtime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/lib/flutter_runtime.dart -------------------------------------------------------------------------------- /lib/src/flutter_runtime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/lib/src/flutter_runtime.dart -------------------------------------------------------------------------------- /lib/src/flutter_runtime_call_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/lib/src/flutter_runtime_call_path.dart -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Flutter/ephemeral/Flutter-Generated.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/macos/Flutter/ephemeral/Flutter-Generated.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/ephemeral/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/macos/Flutter/ephemeral/flutter_export_environment.sh -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime/HEAD/windows/flutter/generated_plugins.cmake --------------------------------------------------------------------------------