├── .github └── workflows │ └── build_mac_app.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── .vscode └── launch.json ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── flutterruntime │ │ │ │ └── flutter_runtime_ide │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── analyzer │ ├── analyze_info.dart │ ├── analyzer_package_manager.dart │ ├── cache │ │ ├── analyzer_class_cache.dart │ │ ├── analyzer_enum_cache.dart │ │ ├── analyzer_extension_cache.dart │ │ ├── analyzer_file_cache.dart │ │ ├── analyzer_import_cache.dart │ │ ├── analyzer_method_cache.dart │ │ ├── analyzer_mixin_cache.dart │ │ ├── analyzer_namespace_cache.dart │ │ └── analyzer_property_accessor_cache.dart │ ├── configs │ │ └── package_config.dart │ ├── file_runtime_generate.dart │ ├── generate_runtime_package.dart │ ├── import_analysis.dart │ ├── muatache_data │ │ ├── mustache_class_data.dart │ │ ├── mustache_constructor_data.dart │ │ ├── mustache_field_data.dart │ │ ├── mustache_file_data.dart │ │ ├── mustache_import_data.dart │ │ ├── mustache_method_data.dart │ │ └── mustache_parameter_data.dart │ └── mustache │ │ ├── mustache.dart │ │ └── mustache_manager.dart ├── app │ ├── modules │ │ ├── analyzer_detail │ │ │ ├── bindings │ │ │ │ └── analyzer_detail_binding.dart │ │ │ ├── controllers │ │ │ │ ├── analyzer_detail_controller.dart │ │ │ │ └── analyzer_info_controller.dart │ │ │ └── views │ │ │ │ ├── analyzer_detail_view.dart │ │ │ │ └── analyzer_info_view.dart │ │ ├── home │ │ │ ├── bindings │ │ │ │ └── home_binding.dart │ │ │ ├── controllers │ │ │ │ └── home_controller.dart │ │ │ └── views │ │ │ │ └── home_view.dart │ │ ├── plugin_market │ │ │ ├── bindings │ │ │ │ └── plugin_market_binding.dart │ │ │ ├── controllers │ │ │ │ ├── add_plugin_controller.dart │ │ │ │ ├── choose_plugin_version_controller.dart │ │ │ │ ├── create_plugin_controller.dart │ │ │ │ └── plugin_market_controller.dart │ │ │ └── views │ │ │ │ ├── add_plugin_view.dart │ │ │ │ ├── choose_plugin_version_view.dart │ │ │ │ ├── command_detail_view.dart │ │ │ │ ├── create_plugin_view.dart │ │ │ │ └── plugin_market_view.dart │ │ └── welcome │ │ │ ├── bindings │ │ │ └── welcome_binding.dart │ │ │ ├── controllers │ │ │ └── welcome_controller.dart │ │ │ └── views │ │ │ └── welcome_view.dart │ ├── routes │ │ ├── app_pages.dart │ │ └── app_routes.dart │ └── utils │ │ └── progress_hud_util.dart ├── common │ ├── command_run.dart │ ├── common_function.dart │ ├── define.dart │ └── plugin_manager.dart ├── main.dart └── widgets │ ├── progress_hud_view │ ├── bindings │ │ └── progress_hud_view_binding.dart │ ├── controllers │ │ └── progress_hud_view_controller.dart │ └── views │ │ └── progress_hud_view_view.dart │ └── run_command │ ├── run_command_view.dart │ └── run_conmand_controller.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── open_branch.sh ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/workflows/build_mac_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/.github/workflows/build_mac_app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/flutterruntime/flutter_runtime_ide/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/kotlin/com/flutterruntime/flutter_runtime_ide/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/analyzer/analyze_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/analyze_info.dart -------------------------------------------------------------------------------- /lib/analyzer/analyzer_package_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/analyzer_package_manager.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_class_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_class_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_enum_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_enum_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_extension_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_extension_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_file_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_file_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_import_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_import_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_method_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_method_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_mixin_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_mixin_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_namespace_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_namespace_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/cache/analyzer_property_accessor_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/cache/analyzer_property_accessor_cache.dart -------------------------------------------------------------------------------- /lib/analyzer/configs/package_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/configs/package_config.dart -------------------------------------------------------------------------------- /lib/analyzer/file_runtime_generate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/file_runtime_generate.dart -------------------------------------------------------------------------------- /lib/analyzer/generate_runtime_package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/generate_runtime_package.dart -------------------------------------------------------------------------------- /lib/analyzer/import_analysis.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/import_analysis.dart -------------------------------------------------------------------------------- /lib/analyzer/muatache_data/mustache_class_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/muatache_data/mustache_class_data.dart -------------------------------------------------------------------------------- /lib/analyzer/muatache_data/mustache_constructor_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/muatache_data/mustache_constructor_data.dart -------------------------------------------------------------------------------- /lib/analyzer/muatache_data/mustache_field_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/muatache_data/mustache_field_data.dart -------------------------------------------------------------------------------- /lib/analyzer/muatache_data/mustache_file_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/muatache_data/mustache_file_data.dart -------------------------------------------------------------------------------- /lib/analyzer/muatache_data/mustache_import_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/muatache_data/mustache_import_data.dart -------------------------------------------------------------------------------- /lib/analyzer/muatache_data/mustache_method_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/muatache_data/mustache_method_data.dart -------------------------------------------------------------------------------- /lib/analyzer/muatache_data/mustache_parameter_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/muatache_data/mustache_parameter_data.dart -------------------------------------------------------------------------------- /lib/analyzer/mustache/mustache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/mustache/mustache.dart -------------------------------------------------------------------------------- /lib/analyzer/mustache/mustache_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/analyzer/mustache/mustache_manager.dart -------------------------------------------------------------------------------- /lib/app/modules/analyzer_detail/bindings/analyzer_detail_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/analyzer_detail/bindings/analyzer_detail_binding.dart -------------------------------------------------------------------------------- /lib/app/modules/analyzer_detail/controllers/analyzer_detail_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/analyzer_detail/controllers/analyzer_detail_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/analyzer_detail/controllers/analyzer_info_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/analyzer_detail/controllers/analyzer_info_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/analyzer_detail/views/analyzer_detail_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/analyzer_detail/views/analyzer_detail_view.dart -------------------------------------------------------------------------------- /lib/app/modules/analyzer_detail/views/analyzer_info_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/analyzer_detail/views/analyzer_info_view.dart -------------------------------------------------------------------------------- /lib/app/modules/home/bindings/home_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/home/bindings/home_binding.dart -------------------------------------------------------------------------------- /lib/app/modules/home/controllers/home_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/home/controllers/home_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/home/views/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/home/views/home_view.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/bindings/plugin_market_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/bindings/plugin_market_binding.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/controllers/add_plugin_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/controllers/add_plugin_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/controllers/choose_plugin_version_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/controllers/choose_plugin_version_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/controllers/create_plugin_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/controllers/create_plugin_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/controllers/plugin_market_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/controllers/plugin_market_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/views/add_plugin_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/views/add_plugin_view.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/views/choose_plugin_version_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/views/choose_plugin_version_view.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/views/command_detail_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/views/command_detail_view.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/views/create_plugin_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/views/create_plugin_view.dart -------------------------------------------------------------------------------- /lib/app/modules/plugin_market/views/plugin_market_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/plugin_market/views/plugin_market_view.dart -------------------------------------------------------------------------------- /lib/app/modules/welcome/bindings/welcome_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/welcome/bindings/welcome_binding.dart -------------------------------------------------------------------------------- /lib/app/modules/welcome/controllers/welcome_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/welcome/controllers/welcome_controller.dart -------------------------------------------------------------------------------- /lib/app/modules/welcome/views/welcome_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/modules/welcome/views/welcome_view.dart -------------------------------------------------------------------------------- /lib/app/routes/app_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/routes/app_pages.dart -------------------------------------------------------------------------------- /lib/app/routes/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/routes/app_routes.dart -------------------------------------------------------------------------------- /lib/app/utils/progress_hud_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/app/utils/progress_hud_util.dart -------------------------------------------------------------------------------- /lib/common/command_run.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/common/command_run.dart -------------------------------------------------------------------------------- /lib/common/common_function.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/common/common_function.dart -------------------------------------------------------------------------------- /lib/common/define.dart: -------------------------------------------------------------------------------- 1 | const fixCommandName = 'fix_runtime'; 2 | -------------------------------------------------------------------------------- /lib/common/plugin_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/common/plugin_manager.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/widgets/progress_hud_view/bindings/progress_hud_view_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/widgets/progress_hud_view/bindings/progress_hud_view_binding.dart -------------------------------------------------------------------------------- /lib/widgets/progress_hud_view/controllers/progress_hud_view_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/widgets/progress_hud_view/controllers/progress_hud_view_controller.dart -------------------------------------------------------------------------------- /lib/widgets/progress_hud_view/views/progress_hud_view_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/widgets/progress_hud_view/views/progress_hud_view_view.dart -------------------------------------------------------------------------------- /lib/widgets/run_command/run_command_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/widgets/run_command/run_command_view.dart -------------------------------------------------------------------------------- /lib/widgets/run_command/run_conmand_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/lib/widgets/run_command/run_conmand_controller.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /open_branch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | flutter pub get 4 | open ./ -a Visual\ Studio\ Code.app 5 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutter-runtime/flutter_runtime_ide/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------