Optimization standards for rebuilds and memory.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add ngxtm/devkit --skill performance --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Performance?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ngxtm-performance)More formats (shields.io, HTML) on the badges page.
---
name: Flutter Performance
description: Optimization standards for rebuilds and memory.
metadata:
labels: [performance]
triggers:
files: ['lib/presentation/**', 'pubspec.yaml']
keywords: [const, buildWhen, ListView.builder, Isolate, RepaintBoundary]
---
# Performance (P1)
- **Rebuilds**: Use `const` widgets and `buildWhen` / `select` for granular updates.
- **Lists**: Always use `ListView.builder` for item recycling.
- **Heavy Tasks**: Use `compute()` or `Isolates` for parsing/logic.
- **Repaints**: Use `RepaintBoundary` for complex animations. Use `debugRepaintRainbowEnabled` to debug.
- **Images**: Use `CachedNetworkImage` + `memCacheWidth`. `precachePicture` for SVGs.
```dart
BlocBuilder<UserBloc, UserState>(
buildWhen: (p, c) => p.id != c.id,
builder: (context, state) => Text(state.name),
)
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!