// the find
flutter-team-archive/plugins
Plugins for Flutter maintained by the Flutter team
The archived home for Flutter's first-party plugins — camera, image_picker, video_player, webview_flutter, and a dozen others — before the Flutter team consolidated everything into flutter/packages in early 2023. All source has moved; this repo is a read-only snapshot. Anyone still depending on it directly is pointing at dead code.
The platform interface pattern used here (e.g., plugin_platform_interface) was genuinely good architecture: it lets platform implementations be swapped without touching the public API, which is why the Flutter team eventually standardized on it everywhere. The CI setup was thorough for its time — separate YAML targets per platform, integration tests driven through real simulators, not just unit tests. The camera plugin's feature decomposition (each camera capability as its own CameraFeature class) is clean and testable, as evidenced by the per-feature test files. The migration to flutter/packages was done properly — the history and changelogs were preserved, not abandoned.
This repo is archived and frozen at February 2023; any bugs found here are already fixed upstream in flutter/packages, so filing issues or sending PRs here is pointless. The star count is misleading — 17k stars accumulated over years of active development, but the repo is a dead end now. If you're vendoring any of these packages by pointing at this repo's git URL rather than pub.dev, you're locked on old versions and won't get security fixes. The webview and camera plugins in particular had significant platform-specific bugs fixed after the migration that will never land here.