Files
antigravity-skills-reference/skills/makepad-reference/SKILL.md
sck_0 f313788985 release: v7.0.0 - 20k Stars Celebration
- Add 300+ new skills from 35+ community repositories
- Total collection now at 1,200+ skills
- New categories: UI/UX, Security, Data Science, Health, Quantum, Makepad
- Update package.json to v7.0.0
- Update README with new stats and 20k stars celebration banner
- Complete CHANGELOG with all new skills and community credits
- Add release_notes.md with detailed acknowledgments

Validation chain run, catalog regenerated.

Thank you to our incredible community for 20,000 GitHub stars!
2026-03-06 09:08:07 +01:00

1.9 KiB

name, description
name description
makepad-reference CRITICAL: Use for Makepad troubleshooting and reference. Triggers on: troubleshoot, error, debug, fix, problem, issue, no matching field, parse error, widget not found, UI not updating, code quality, refactor, responsive layout, adaptive, api docs, reference, documentation, 故障排除, 错误, 调试, 问题, 修复

Makepad Reference

This category provides reference materials for debugging, code quality, and advanced layout patterns.

Quick Navigation

Topic File Use When
API Documentation Official docs index, quick API reference Finding detailed API info
Troubleshooting Common errors and fixes Build fails, runtime errors
Code Quality Makepad-aware refactoring Simplifying code safely
Adaptive Layout Desktop/mobile responsive Cross-platform layouts

Common Issues Quick Reference

Error Quick Fix
no matching field: font Use text_style: <THEME_FONT_*>{}
Color parse error (ends in e) Change last digit (e.g., #14141e#14141f)
set_text missing argument Add cx as first argument
UI not updating Call redraw(cx) after changes
Widget not found Check ID spelling, use ids!() for paths

Debug Tips

# Run with line info for better error messages
MAKEPAD=lines cargo +nightly run
// Add logging
log!("Value: {:?}", my_value);
log!("State: {} / {}", self.counter, self.is_loading);

Resources