- 23 Jan, 2023 1 commit
-
-
Michael Goderbauer authored
* dart fix --apply * manual fixes * fix after merge conflicts * review
-
- 09 Jan, 2023 1 commit
-
-
Jenn Magder authored
-
- 04 Jan, 2023 1 commit
-
-
Christopher Fujino authored
* fix null check in parsing web plugin yaml * revert accidental diff * remove comment
-
- 28 Apr, 2022 1 commit
-
-
Phil Quitslund authored
-
- 27 Apr, 2022 1 commit
-
-
Alexandre Ardhuin authored
-
- 26 Apr, 2022 1 commit
-
-
Jonah Williams authored
-
- 22 Feb, 2022 1 commit
-
-
Tomasz Gucio authored
-
- 26 Jan, 2022 1 commit
-
-
Daco Harkes authored
-
- 04 Jan, 2022 2 commits
-
-
Zachary Anderson authored
This reverts commit 5257f029.
-
Daco Harkes authored
* Building shared C source code as part of the native build for platforms Android, iOS, Linux desktop, MacOS desktop, and Windows desktop. * Sample code doing a synchronous FFI call. * Sample code doing a long running synchronous FFI call on a helper isolate. * Use of `package:ffigen` to generate the bindings.
-
- 01 Oct, 2021 1 commit
-
-
stuartmorgan authored
-
- 26 Aug, 2021 1 commit
-
-
Jenn Magder authored
-
- 23 Aug, 2021 1 commit
-
-
Jonah Williams authored
-
- 02 Jun, 2021 1 commit
-
-
Anis Alibegić authored
-
- 26 May, 2021 1 commit
-
-
stuartmorgan authored
Windows plugins are designed to share implementations between Win32 and UWP, but not all plugins will support both. This adds a new 'supportedVariants' key to Windows plugins that allows specifying 'win32' and/or 'uwp' (and potentially others in the future in case that becomes necessary). Plugins without any supported variants will be assumed to be Win32 for backward compatibility. This will allow compiling Windows projects that use Win32-only Windows plugins (which is currently all of them) in UWP mode. The plugins will of course throw missing implementation exceptions at runtime, but tehy won't prevent being able to build as they currently do. Fixes https://github.com/flutter/flutter/issues/82815
-
- 23 Apr, 2021 1 commit
-
-
Emmanuel Garcia authored
-
- 13 Apr, 2021 1 commit
-
-
Jenn Magder authored
-
- 24 Mar, 2021 1 commit
-
-
Jenn Magder authored
-
- 23 Mar, 2021 1 commit
-
-
Zachary Anderson authored
* Revert "Enable dart_plugin_registry_test (#76645)" This reverts commit 109e0bb9. * Revert "Apply changes caused by https://github.com/flutter/flutter/pull/76662 (#77093)" This reverts commit cdca6485. * Revert "Disable clang format in the plugin registrants (#76662)" This reverts commit dadbd47d. * Revert "Disable warnings for the dart plugin registrant (#76561)" This reverts commit 098ece52. * Revert "Remove dart_plugin_registry_test timeouts (#76838)" This reverts commit 1610a274. * Revert "Implement dartPluginClass support for plugins (#74469)" This reverts commit b7d48062. Kick.
-
- 19 Feb, 2021 1 commit
-
-
Emmanuel Garcia authored
-
- 27 Jan, 2021 1 commit
-
-
Jonah Williams authored
* opt out the flutter tool * oops EOF * fix import * Update tool_backend.dart * Update daemon_client.dart * fix more
-
- 12 Oct, 2020 1 commit
-
-
Jonah Williams authored
HACKTOBERFEST
-
- 05 Oct, 2020 1 commit
-
-
Jonah Williams authored
Removes usage of global variables, expands documentation, and fixes some formatting inconsistencies. Increased test coverage for android plugin to prove it can determine the embedding version.
-
- 18 May, 2020 1 commit
-
-
stuartmorgan authored
Treats 'pluginClass: none' as equivalent to having no 'pluginClass' entry on the desktop platforms, to satisy stable channel plugin validation of Dart-only desktop plugin implementations. See issue for full details. Part of https://github.com/flutter/flutter/issues/57497
-
- 03 Apr, 2020 1 commit
-
-
Francisco Magdaleno authored
-
- 11 Feb, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 29 Jan, 2020 1 commit
-
-
Emmanuel Garcia authored
-
- 06 Jan, 2020 1 commit
-
-
Jonah Williams authored
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 19 Nov, 2019 1 commit
-
-
Alexandre Ardhuin authored
* implicit-casts:false on flutter_tools/lib * address review comments * use castStringKeyedMap * introduce {bool,string,strings}Arg * fix ci
-
- 07 Nov, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 05 Nov, 2019 1 commit
-
-
Michael Klimushyn authored
This missed some plugins that _do_ support the v1 embedding (shared_preferences as one known case) so caused unexpected breakages. This reverts commit b94c1a41.
-
- 04 Nov, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 16 Oct, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 04 Oct, 2019 1 commit
-
-
Emmanuel Garcia authored
* Generate projects using the new Android embedding * Add comment about usesNewEmbedding:true * Feedback * Rework way to detect new embedding in new apps
-
- 26 Sep, 2019 1 commit
-
-
stuartmorgan authored
Adds very preliminary support for Windows and Linux plugins: - Adds those platforms to the new plugin schema, initially supporting just a plugin class. - Adds C++ plugin registrant generation for any Windows or Linux plugins found. This doesn't have yet have any build tooling for either platform, so anyone using the generated registrant still needs to do manual build configuration. This reduces the manual work, however, and creates a starting point for future tooling work. As with all Windows and Linux work at this time, this is not final, and subject to change without warning in the future (e.g., Windows could potentially switch to a C# interface, or 'linux' may change to 'gtk' or 'linux_gtk' in pubspec.yaml).
-
- 03 Sep, 2019 1 commit
-
-
Harry Terkelsen authored
* WIP on web plugin registry * WIP on registering plugins * WIP on web plugin registration * Only generate `package:flutter_web_plugins` imports if plugins are defined * Add parsing test * Add documentation * Fix analyzer warnings * add license headers * Add tests for package:flutter_web_plugins * Run `flutter update-packages --force-upgrade` * Fix analyzer errors * Fix analyzer error in test * Update copyright and remove flutter SDK constraints * Enable tests since engine has rolled * add flutter_web_plugins tests to bots * Create an empty .packages file for WebFs test
-
- 30 Aug, 2019 1 commit
-
-
Kaushik Iska authored
-