Source

flutter/agent-plugins

87 skills · 622.2K combined installs

Skills from this source

#
Skill
Source
8W Activity
Installs
678
flutter-apply-architecture-best-practices Official Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new…
flutter/agent-plugins
34.5K
694
flutter-build-responsive-layout Official Use `LayoutBuilder`, `MediaQuery`, or `Expanded/Flexible` to create a layout that adapts to different screen sizes. U…
flutter/agent-plugins
33.4K
714
flutter-fix-layout-issues Official Fixes Flutter layout errors (overflows, unbounded constraints) using Dart and Flutter MCP tools. Use when addressing …
flutter/agent-plugins
32K
728
flutter-add-widget-test Official Implement a component-level test using `WidgetTester` to verify UI rendering and user interactions (tapping, scrollin…
flutter/agent-plugins
31.2K
742
flutter-add-integration-test Official Configures Flutter Driver for app interaction and converts MCP actions into permanent integration tests. Use when add…
flutter/agent-plugins
30.6K
747
flutter-setup-declarative-routing Official Configure `MaterialApp.router` using a package like `go_router` for advanced URL-based navigation. Use when developin…
flutter/agent-plugins
30.4K
761
flutter-implement-json-serialization Official Create model classes with `fromJson` and `toJson` methods using `dart:convert`. Use when manually mapping JSON keys t…
flutter/agent-plugins
29.7K
764
flutter-setup-localization Official Add `flutter_localizations` and `intl` dependencies, enable "generate true" in `pubspec.yaml`, and create an `l10n.ya…
flutter/agent-plugins
29.5K
766
flutter-add-widget-preview Official Adds interactive widget previews to the project using the previews.dart system. Use when creating new UI components o…
flutter/agent-plugins
29.5K
777
flutter-use-http-package Official Use the `http` package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to…
flutter/agent-plugins
29.1K
1432
flutter-building-layouts Official Builds Flutter layouts using the constraint system and layout widgets. Use when creating or refining the UI structure…
flutter/agent-plugins
10.8K
1456
flutter-architecting-apps Official Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new…
flutter/agent-plugins
10.5K
1535
flutter-animating-apps Official Implements animated effects, transitions, and motion in a Flutter app. Use when adding visual feedback, shared elemen…
flutter/agent-plugins
9.8K
1541
flutter-managing-state Official Manages application and ephemeral state in a Flutter app. Use when sharing data between widgets or handling complex U…
flutter/agent-plugins
9.7K
1564
flutter-theming-apps Official Customizes the visual appearance of a Flutter app using the theming system. Use when defining global styles, colors, …
flutter/agent-plugins
9.6K
1620
flutter-implementing-navigation-and-routing Official Handles routing, navigation, and deep linking in a Flutter application. Use when moving between screens or setting up…
flutter/agent-plugins
9.4K
1702
flutter-testing-apps Official Implements unit, widget, and integration tests for a Flutter app. Use when ensuring code quality and preventing regre…
flutter/agent-plugins
9.1K
1800
flutter-caching-data Official Implements caching strategies for Flutter apps to improve performance and offline support. Use when retaining app dat…
flutter/agent-plugins
8.8K
1809
flutter-reducing-app-size Official Measures and optimizes the size of Flutter application bundles for deployment. Use when minimizing download size or m…
flutter/agent-plugins
8.8K
1831
flutter-building-forms Official Builds Flutter forms with validation and user input handling. Use when creating login screens, data entry forms, or a…
flutter/agent-plugins
8.7K
1833
flutter-handling-http-and-json Official Executes HTTP requests and handles JSON serialization in a Flutter app. Use when integrating with REST APIs or parsin…
flutter/agent-plugins
8.7K
1852
flutter-handling-concurrency Official Executes long-running tasks in background isolates to keep the UI responsive. Use when performing heavy computations …
flutter/agent-plugins
8.6K
1858
flutter-localizing-apps Official Configures a Flutter app to support multiple languages and regions. Use when preparing an application for internation…
flutter/agent-plugins
8.6K
1861
flutter-working-with-databases Official Manages local data persistence using SQLite or other database solutions. Use when a Flutter app needs to store, query…
flutter/agent-plugins
8.6K
1872
flutter-improving-accessibility Official Configures a Flutter app to support assistive technologies like Screen Readers. Use when ensuring an application is u…
flutter/agent-plugins
8.5K
1887
flutter-adding-home-screen-widgets Official Adds home screen widgets to a Flutter app for Android and iOS. Use when providing glanceable app information or quick…
flutter/agent-plugins
8.4K
1895
flutter-building-plugins Official Builds Flutter plugins that provide native interop for other apps to use. Use when creating reusable packages that br…
flutter/agent-plugins
8.4K
1886
flutter-interoperating-with-native-apis Official Interoperates with native platform APIs on Android, iOS, and the web. Use when accessing device-specific features not…
flutter/agent-plugins
8.4K
1901
flutter-embedding-native-views Official Embeds native Android, iOS, or macOS views into a Flutter app. Use when integrating complex native components like ma…
flutter/agent-plugins
8.3K
1957
flutter-setting-up-on-macos Official Sets up a macOS environment for Flutter development. Use when configuring a macOS machine to run, build, or deploy Fl…
flutter/agent-plugins
8K
2001
flutter-setting-up-on-windows Official Sets up a Windows environment for Flutter development. Use when configuring a Windows machine to run, build, or deplo…
flutter/agent-plugins
7.8K
2018
dart-run-static-analysis Official Execute `dart analyze` to identify warnings and errors, and use `dart fix --apply` to automatically resolve mechanica…
flutter/agent-plugins
7.7K
2019
dart-add-unit-test Official Write and organize unit tests for functions, methods, and classes using `package:test`. Use when creating new logic o…
flutter/agent-plugins
7.7K
2025
flutter-setting-up-on-linux Official Sets up a Linux environment for Flutter development. Use when configuring a Linux machine to run, build, or deploy Fl…
flutter/agent-plugins
7.7K
2030
dart-fix-runtime-errors Official Uses get_runtime_errors and lsp to fetch an active stack trace, locate the failing line, apply a fix, and verify reso…
flutter/agent-plugins
7.6K
2043
dart-resolve-package-conflicts Official Workflow for fixing package version conflicts. Use this when `pub get` fails due to incompatible package versions.
flutter/agent-plugins
7.6K
2054
dart-generate-test-mocks Official Define and generate mock objects for external dependencies using `package:mockito` and `build_runner`. Use when unit …
flutter/agent-plugins
7.5K
2057
dart-use-pattern-matching Official Use switch expressions and pattern matching where appropriate
flutter/agent-plugins
7.5K
2065
dart-collect-coverage Official Collect coverage using the coverage packge and create an LCOV report
flutter/agent-plugins
7.5K
2073
dart-use-primary-constructors Official Help users write syntactically and semantically correct primary constructors in Dart, and migrate/use the new constru…
flutter/agent-plugins
7.5K
2081
dart-migrate-to-checks-package Official |- Replace the usage of `expect` and similar functions from `package:matcher` to `package:checks` equivalents.
flutter/agent-plugins
7.4K
2083
dart-build-cli-app Official Entrypoint structure, exit codes, cross-platform scripts. Use when building command line utilities, scripts, or appli…
flutter/agent-plugins
7.4K
2100
dart-setup-ffi-assets Official Guides agents in compiling and packaging C/C++ source code into dynamic or static libraries (Code Assets) using Dart'…
flutter/agent-plugins
7.4K
2093
dart-use-ffigen Official Guide agents to use `package:ffigen` to automatically generate FFI bindings instead of writing them manually. Use thi…
flutter/agent-plugins
7.4K
6002
dart-write-documentation Official Rules and formatting guidelines for writing Dart /// API documentation and doc comments.
flutter/agent-plugins
2.1K
7628
flutter-accessibility-audit Official Triggers an accessibility scan through the widget_inspector and automatically adds Semantics widgets or missing label…
flutter/agent-plugins
1.5K
8374
flutter-layout Official How to build your app's layout using Flutter's layout widgets and constraint system
flutter/agent-plugins
1.3K
8617
flutter-performance Official Optimize the performance of your Flutter app
flutter/agent-plugins
1.2K
8752
flutter-theming Official How to customize your app's theme using Flutter's theming system
flutter/agent-plugins
1.2K
8987
flutter-animation Official Add animated effects to your Flutter app
flutter/agent-plugins
1.1K
Page 1 · 87 total Next