๐Ÿ› ๏ธ
QualityShell

Flutter Errors

by evanca

Flutter Errors is a Quality skill for Claude Code, published by evanca in flutter-ai-rules.

616 stars60 forkson evanca/flutter-ai-rulesAdded 2026/08/24Repository updated 2026/08/21
aiai-rulesai-skillsantigravityclaudeclaude-aiclaude-codeclaude-skillscodexcodex-clicodex-skillcodex-skillscursorcursor-aidartdartlangflutterllmwindsurfwindsurf-ai
Install in seconds
Install Flutter Errors
Copy Flutter Errors into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/evanca/flutter-ai-rules/tree/main/skills/flutter-errors ~/.claude/skills/flutter-errors

Requires Node.js. Downloads this skill only โ€” not the rest of the repository โ€” into your Claude Code skills folder.

Without Node.js

git clone https://github.com/evanca/flutter-ai-rules.git

Clones the whole repository, then copy the skillโ€™s own directory into your skills folder yourself.

In this catalog

Source file
skills/flutter-errors/SKILL.md in evanca/flutter-ai-rules
Installs to
~/.claude/skills/flutter-errors
Collection
One of 25 skills cataloged from this repository
Category
Quality โ€” 1354 skills

What Flutter Errors does

Flutter Errors provides fixes for common Flutter runtime and layout issues like overflow, unbounded constraints, and setState-during-build errors. Use it when debugging widget tree and scroll problems.

Flutter Errors is cataloged under Quality on DirSkills. Flutter Errors comes from a repository tagged ai, ai-rules, ai-skills, antigravity and claude.

Documentation

README

Flutter Errors Skill

This skill provides solutions for the most common Flutter runtime and layout errors.


RenderFlex Overflowed

Error: A RenderFlex overflowed by X pixels on the right/bottom.

Cause: A Row or Column contains children that are wider/taller than the available space.

Fix: Wrap the overflowing child in Flexible or Expanded, or constrain its size:

Row(
  children: [
    Expanded(child: Text('Long text that might overflow')),
    Icon(Icons.info),
  ],
)

Vertical Viewport Given Unbounded Height

Error: Vertical viewport was given unbounded height.

Cause: A ListView (or other scrollable) is placed inside a Column without a bounded height.

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Flutter Errors

  • What else does evanca publish alongside Flutter Errors?

    Flutter Errors is one of 25 skills that DirSkills catalogs from evanca/flutter-ai-rules, the repository it ships in. Its siblings there include Accessibility, Bloc and Code Review. Each one is a separate skill with its own page in this directory, installs the same way Flutter Errors does, and is maintained by evanca in that same repository. The rest of the collection is listed on the evanca/flutter-ai-rules page.

  • How does Flutter Errors compare to other Quality skills?

    Flutter Errors ranks #1118 by stars among the 1354 Quality skills in this catalog. The most-starred ones next to it are Benchmark, Benchmark Optimization Loop and API Design Patterns. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Flutter Errors against them. Open each page to compare what they document and how they install.

More from evanca/flutter-ai-rules

Flutter Errors is one of 25 skills cataloged on DirSkills from evanca/flutter-ai-rules.

See all 25 skills โ†’