makepad-getting-started

📁 zhanghandong/makepad-skills 📅 Jan 16, 2026
2
总安装量
0
周安装量
#74166
全站排名
安装命令
npx skills add https://github.com/zhanghandong/makepad-skills --skill makepad-getting-started

Skill 文档

Getting Started with Makepad Skills

Welcome! These skills help Claude assist you in building cross-platform UI applications with the Makepad framework.

Quick Start

  1. New Project? → See init.md for project scaffolding
  2. Project Organization? → See project-structure.md
  3. Learning Basics? → Go to 01-core

Skills Overview

Category Description Use When
00-getting-started Project setup and structure Starting a new project
01-core Layout, widgets, events, styling Learning fundamentals
02-components Built-in widget reference Need specific components
03-graphics Shaders, SDF, animations Visual effects
04-patterns State, async, responsive design Advanced patterns
05-deployment Build for all platforms Packaging apps
06-reference Troubleshooting, code quality Debugging, refactoring
99-evolution Self-improving skills Auto-learning

First Steps

# Create new Makepad project
cargo new my_app
cd my_app

# Add Makepad dependencies to Cargo.toml
[dependencies]
makepad-widgets = { git = "https://github.com/makepad/makepad", branch = "dev" }

# Run
cargo run

Resources