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
Writing Flutter Widget Tests
2,814Implement a component-level test using `WidgetTester` to verify UI rendering and user interactions (tapping, scrolling, entering text). Use
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
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
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.
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
Integrating Platform Views and Web Content
1,671Embeds native Android, iOS, or macOS views into a Flutter app. Use when integrating complex native components like maps or web views.