flutter-apply-architecture-best-practices: Architects a Flutter application using the recommended layered approach (UI, Logic, Data). Use when structuring a new project or refactoring for scalability.; flutter-build-responsive-layout: Use `LayoutBuilder`, `MediaQuery`, or `Expanded/Flexible` to create a layout that adapts to different screen sizes. Use when you need the UI to look good on…; flutter-fix-layout-issues: Fixes Flutter layout errors (overflows, unbounded constraints) using Dart and…
Updated 2026-09-12 08:35:01 +08:00
dart-add-unit-test: Write and organize unit tests for functions, methods, and classes using `package:test`. Use when creating new logic or fixing bugs to ensure code remains…; dart-run-static-analysis: Execute `dart analyze` to identify warnings and errors, and use `dart fix --apply` to automatically resolve mechanical lint issues. Use during development to…; dart-fix-runtime-errors: Uses get_runtime_errors and lsp to fetch an active stack trace, locate the failing line, apply a fix, and verify…
Updated 2026-09-11 03:45:58 +08:00
flutter-animations: Add, fix, refactor, debug, test, or explain Flutter animations and motion effects. Use when working with implicit animations such as AnimatedContainer,…; flutter-adaptive-ui: Build, fix, review, and validate adaptive or responsive Flutter UIs for mobile, tablet, desktop, web, large screens, foldables, and mixed input devices. Use…; flutter-architecture: Design, refactor, review, or implement Flutter app architecture using MVVM, layered UI/Data/optional Domain boundaries, fea…
Updated 2026-05-01 22:16:25 +08:00