๐ŸŽฏ
FrontendShell

Dart 3 Updates

by evanca

Dart 3 Updates is a Frontend 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 Dart 3 Updates
Copy Dart 3 Updates 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/dart-3-updates ~/.claude/skills/dart-3-updates

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/dart-3-updates/SKILL.md in evanca/flutter-ai-rules
Installs to
~/.claude/skills/dart-3-updates
Collection
One of 25 skills cataloged from this repository
Category
Frontend โ€” 567 skills

What Dart 3 Updates does

Dart 3 Updates shows how to use Dart 3 branches, patterns, and records idiomatically. Use it when refactoring switch logic, destructuring values, or choosing between records and classes.

Dart 3 Updates is cataloged under Frontend on DirSkills. Dart 3 Updates comes from a repository tagged ai, ai-rules, ai-skills, antigravity and claude.

Documentation

README

Dart 3 Updates Skill

Apply Dart 3 language features โ€” branches, patterns, pattern types, and records โ€” correctly and idiomatically.

When to Use

Use this skill when:

  • Writing or refactoring switch statements or if-else chains.
  • Creating new data-holding classes and deciding between sealed classes, records, or plain classes.
  • Destructuring values from maps, lists, records, or objects.
  • Modernizing pre-Dart-3 code to use patterns, exhaustiveness checks, or switch expressions.

1. Branches

if / if-case

// Standard if
if (score >= 90) {
  grade = 'A';
} else if (score >= 80) {
  grade = 'B';
} else {
  grade = 'C';
}

// if-case: match and destructure against a single pattern
if (pair case [int x, int y]) {
  print('$x, $y');
}

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

Frequently asked about Dart 3 Updates

  • What else does evanca publish alongside Dart 3 Updates?

    Dart 3 Updates 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 Dart 3 Updates 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 Dart 3 Updates compare to other Frontend skills?

    Dart 3 Updates ranks #462 by stars among the 567 Frontend skills in this catalog. The most-starred ones next to it are Angular Developer, Android Clean Architecture and Accessibility. 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 Dart 3 Updates against them. Open each page to compare what they document and how they install.

More from evanca/flutter-ai-rules

Dart 3 Updates is one of 25 skills cataloged on DirSkills from evanca/flutter-ai-rules.

See all 25 skills โ†’