Use the design token for 8 px spacing between items: ```dart ListView.separated( itemCount: items.length, separatorBuilder: (_, __) => const SizedBox(height: VSpacing.s8), itemBuilder: (_, index) => buildItem(items[index]), ); ``` Assumption: the project defines `VSpacing.s8` as the 8-pixel token. Avoid a hardcoded `8` magic number.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill flutter-design-system --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Flutter Design System?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-flutter-design-system-bd660b04)More formats (shields.io, HTML) on the badges page.
Use the design token for 8 px spacing between items:
```dart
ListView.separated(
itemCount: items.length,
separatorBuilder: (_, __) => const SizedBox(height: VSpacing.s8),
itemBuilder: (_, index) => buildItem(items[index]),
);
```
Assumption: the project defines `VSpacing.s8` as the 8-pixel token. Avoid a hardcoded `8` magic number.
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!