flutter-concurrency
Advanced Flutter concurrency and JSON serialization strategies for high-performance, jank-free UI rendering.
Install
npx skills add https://github.com/flutter/skills --skill flutter-concurrencyStats
| Total installs | 988 |
| Weekly installs | 981 |
| GitHub stars | 833 |
| First seen | Mar 4, 2026 |
| Source | @flutter/skills |
Summary
- Provides decision tree for choosing between manual serialization (dart:convert) and code generation (json_serializable) based on model complexity
- Supports three concurrency strategies: main-thread async/await for small payloads, short-lived Isolate.run() for heavy one-off computations, and long-lived isolates with ReceivePort/SendPort for continuous two-way communication
- Includes platform-aware fallback: uses compute() for Flutter Web since dart:isolate threading is unsupported
- Demonstrates integration with FutureBuilder for responsive UI state binding and enforces key constraints like no UI access in isolates and immutable message passing
Tags
Related skills
| Skill | Installs | vs flutter-concurrency |
|---|---|---|
| motion | 1,082 | +94 |
| sre-engineer | 1,068 | +80 |
| flutter-app-size | 1,003 | +15 |
| mysql-best-practices | 948 | -40 |
| vercel-deployment | 1,008 | +20 |
FAQ
- How many installs does flutter-concurrency have?
- flutter-concurrency has 988 total installs and 981 installs this week.
- Where is flutter-concurrency hosted?
- flutter-concurrency is published by @flutter/skills at https://github.com/flutter/skills.
- How many GitHub stars does flutter-concurrency have?
- flutter-concurrency has 833 GitHub stars.
- When was flutter-concurrency first indexed?
- OrangeBot.AI first indexed flutter-concurrency on Mar 4, 2026.
- How do I install flutter-concurrency?
- Run: npx skills add https://github.com/flutter/skills --skill flutter-concurrency