flutter-apply-architecture-best-practices
2,967Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new project or refactoring
flutter-build-responsive-layout
2,928Use `LayoutBuilder`, `MediaQuery`, or `Expanded/Flexible` to create a layout that adapts to different screen sizes. Use when you need the UI
Resolving Flutter Layout Errors
2,857Fixes Flutter layout errors (overflows, unbounded constraints) using Dart and Flutter MCP tools. Use when addressing "RenderFlex overflowed"
Writing Flutter Widget Tests
2,814Implement a component-level test using `WidgetTester` to verify UI rendering and user interactions (tapping, scrolling, entering text). Use
Implementing Routing and Deep Linking
2,811Configure `MaterialApp.router` using a package like `go_router` for advanced URL-based navigation. Use when developing web applications or m
Implementing Flutter Integration Tests
2,808Configures Flutter Driver for app interaction and converts MCP actions into permanent integration tests. Use when adding integration testing
flutter-implement-json-serialization
2,790Create model classes with `fromJson` and `toJson` methods using `dart:convert`. Use when manually mapping JSON keys to class properties for
Internationalizing Flutter Applications
2,781Add `flutter_localizations` and `intl` dependencies, enable "generate true" in `pubspec.yaml`, and create an `l10n.yaml` configuration file.
flutter-add-widget-preview
2,776Adds interactive widget previews to the project using the previews.dart system. Use when creating new UI components or updating existing scr
Implementing Flutter Networking
2,733Use the `http` package to execute GET, POST, PUT, or DELETE requests. Use when you need to fetch from or send data to a REST API.
Architecting Flutter Layouts
1,962Builds Flutter layouts using the constraint system and layout widgets. Use when creating or refining the UI structure of a Flutter applicati
Architecting Flutter Applications
1,937Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new project or refactoring
Implementing Flutter Animations
1,844Implements animated effects, transitions, and motion in a Flutter app. Use when adding visual feedback, shared element transitions, or physi
Managing State in Flutter
1,843Manages application and ephemeral state in a Flutter app. Use when sharing data between widgets or handling complex UI state transitions.
Implementing Flutter Theming and Adaptive Design
1,818Customizes the visual appearance of a Flutter app using the theming system. Use when defining global styles, colors, or typography for an ap
Implementing Navigation and Routing in Flutter
1,807Handles routing, navigation, and deep linking in a Flutter application. Use when moving between screens or setting up URL-based navigation.
Testing Flutter Applications
1,761Implements unit, widget, and integration tests for a Flutter app. Use when ensuring code quality and preventing regressions through automate
flutter-handling-http-and-json
1,724Executes HTTP requests and handles JSON serialization in a Flutter app. Use when integrating with REST APIs or parsing structured data from
Implementing Flutter Caching and Offline-First Architectures
1,722Implements caching strategies for Flutter apps to improve performance and offline support. Use when retaining app data locally to reduce net
Building Validated Forms
1,720Builds Flutter forms with validation and user input handling. Use when creating login screens, data entry forms, or any multi-field user inp
Managing Dart Concurrency and Isolates
1,719Executes long-running tasks in background isolates to keep the UI responsive. Use when performing heavy computations or parsing large datase
flutter-reducing-app-size
1,711Measures and optimizes the size of Flutter application bundles for deployment. Use when minimizing download size or meeting app store packag
flutter-working-with-databases
1,707Manages local data persistence using SQLite or other database solutions. Use when a Flutter app needs to store, query, or synchronize large
Implementing Flutter Accessibility
1,701Configures a Flutter app to support assistive technologies like Screen Readers. Use when ensuring an application is usable for people with d