MA

makepad-widgets

Build and manage UI elements within the Makepad framework.

Install

mkdir -p .claude/skills/makepad-widgets && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4883" && unzip -o skill.zip -d .claude/skills/makepad-widgets && rm skill.zip

Installs to .claude/skills/makepad-widgets

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

CRITICAL: Use for Makepad 2.0 widget catalog and usage. Triggers on: makepad widget, makepad View, makepad Button, makepad Label, makepad TextInput, makepad PortalList, makepad Dock, makepad Modal, makepad Image, makepad CheckBox, makepad Slider, makepad DropDown, widget catalog, widget reference, widget list, SolidView, RoundedView, ScrollYView, FoldHeader, Splitter, FileTree, 组件, 控件, 视图, 按钮, 标签, 输入框, 列表, 模态框
413 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Intermediate

Key capabilities

  • Define UI layouts with View widgets
  • Implement interactive buttons and inputs
  • Render complex lists with PortalList
  • Manage component hierarchy
  • Apply theme-based styling

How it works

Widgets are defined using Splash syntax and registered via script_mod!, requiring specific layout properties like height: Fit for proper rendering.

Inputs & outputs

You give it
Splash syntax widget definition
You get back
Rendered UI component

When to use makepad-widgets

  • Define Makepad view layouts
  • Implement interactive buttons
  • Render text input components
  • Manage UI component hierarchy

About this skill

Makepad 2.0 Widget Catalog Skill

Version: makepad-widgets (dev branch) | Last Updated: 2026-03-03

Overview

Makepad 2.0 provides a rich set of built-in widgets for building UIs. All widgets are defined in Splash syntax and registered via script_mod!.

Documentation

Refer to the local files for detailed documentation:

  • ./references/widget-catalog.md - Complete widget list with properties
  • ./references/widget-advanced.md - Advanced patterns: PortalList, Dock, custom widgets, MapView

IMPORTANT: Documentation Completeness Check

Before answering questions, Claude MUST:

  1. Read the relevant reference file(s) listed above
  2. Incorporate reference content into the answer

Widget Categories Quick Reference

Containers (Layout)

WidgetDescriptionKey Properties
ViewBasic container (transparent)width, height, flow, spacing, padding, align
SolidViewView with solid background+ show_bg: true, draw_bg.color
RoundedViewView with rounded corners+ draw_bg.border_radius
RoundedAllViewAll corners same radius+ border_radius shorthand
GradientXViewHorizontal gradient bg+ draw_bg colors
GradientYViewVertical gradient bg+ draw_bg colors
ScrollXViewHorizontal scrollingscroll property
ScrollYViewVertical scrollingscroll property
ScrollXYViewBoth-axis scrollingscroll property

Text Widgets

WidgetDescriptionKey Properties
LabelSingle/multi-line texttext, draw_text.color, draw_text.text_style.font_size
H1 - H4Heading levelstext (pre-styled)
PParagraph texttext
TextInputEditable text fieldtext, empty_text, password, read_only, numeric_only
MarkdownMarkdown rendererbody
HtmlHTML rendererbody
LinkLabelClickable link texttext, url

Buttons

WidgetDescriptionKey Properties
ButtonStandard buttontext
ButtonFlatFlat style buttontext
ButtonFlatterMinimal buttontext

Toggles

WidgetDescriptionKey Properties
CheckBoxCheck boxtext, active
ToggleToggle switchtext, active
RadioButtonRadio buttontext, active

Input Widgets

WidgetDescriptionKey Properties
SliderHorizontal slidermin, max, step, default, precision
DropDownDropdown selectlabels: ["a", "b", "c"]

Media

WidgetDescriptionKey Properties
ImageImage displaysource, fit (Stretch/Horizontal/Vertical/Smallest/Biggest/Size)
SvgExternal SVG file rendererdraw_svg.svg (crate_resource/http_resource), animating, draw_svg.color
IconSVG icon (tinted)draw_icon.svg, draw_icon.color, icon_walk
VectorInline vector graphicsviewbox, Path{d: "..."}
LoadingSpinnerLoading indicatorcolor, rotation_speed
MapViewMap widgetcenter_lon, center_lat, zoom (MUST use fixed height!)

Layout Helpers

WidgetDescriptionUsage
HrHorizontal ruleDivider line
VrVertical ruleVertical divider
FillerFlexible spacePush siblings apart (use between Fit siblings only!)
SplitterResizable splitaxis: Horizontal/Vertical, a/b children
FoldHeaderCollapsible sectionheader + body children

Lists

WidgetDescriptionUsage
PortalListVirtualized listFor large lists (100+ items), only renders visible items
FlatListSimple listFor small lists, renders all items

Navigation

WidgetDescriptionControl
ModalModal dialog.open(cx) / .close(cx) from Rust
TooltipTooltip popupHover-triggered
PopupNotificationToast notificationTimed display
SlidePanelSliding panelslide_from
ExpandablePanelExpandable areaopen/close
PageFlipPage switcheractive_page: page_name
StackNavigationStack navpush/pop pages

Dock System

WidgetDescription
DockTab container system
DockSplitterDock split panels
DockTabsTab bar
DockTabIndividual tab

Critical Rules

1. height: Fit on Containers

// WRONG - View defaults to 0px height
View{ flow: Down Label{text: "Invisible"} }

// CORRECT
View{ height: Fit flow: Down Label{text: "Visible"} }

2. new_batch for Colored Containers with Text

// WRONG - text behind background
RoundedView{ draw_bg.color: #333 Label{text: "Invisible"} }

// CORRECT
RoundedView{ new_batch: true draw_bg.color: #333 Label{text: "Visible"} }

3. Named Children with :=

// Named (addressable, overridable)
title := Label{text: "Hello"}

// Static (not addressable)
Label{text: "Hello"}

4. Label Default Color is White

// Default text is white (#fff) - set color for light backgrounds
Label{text: "Dark text" draw_text.color: #333}

5. MapView MUST Have Fixed Height

// WRONG
MapView{ width: Fill height: Fill }

// CORRECT
View{ new_batch: true width: Fill height: 400
    MapView{ width: Fill height: 400 center_lat: 40.7 center_lon: -73.9 zoom: 14.0 }
}

6. Label Does NOT Support Animator

// WRONG (silently ignored)
Label{ animator: Animator{...} }

// CORRECT - wrap in View
View{ animator: Animator{...} Label{text: "Animated"} }

Common Widget Patterns

Card

RoundedView{
    width: Fill height: Fit
    padding: 16
    new_batch: true
    draw_bg.color: #2a2a3d
    draw_bg.border_radius: 8.0
    flow: Down spacing: 8
    title := Label{text: "Title" draw_text.color: #fff draw_text.text_style.font_size: 16}
    body := Label{text: "Content" draw_text.color: #aaa}
}

Form Input

View{
    width: Fill height: Fit
    flow: Down spacing: 4
    Label{text: "Email" draw_text.color: #aaa draw_text.text_style.font_size: 11}
    email_input := TextInput{
        width: Fill height: 36
        empty_text: "Enter email..."
    }
}

Scrollable List

ScrollYView{
    width: Fill height: Fill
    flow: Down spacing: 4
    new_batch: true
    on_render: || {
        for i, item in items {
            ItemTemplate{label.text: item.name}
        }
    }
}

Best Practices

  1. Use height: Fit on every container unless you want Fill or fixed pixels
  2. Use new_batch: true on any View with background color + text children
  3. Use := for children you need to reference or override
  4. Use theme colors (theme.color_*) instead of hardcoded colors
  5. Use PortalList for large lists (virtualizes rendering)
  6. Use ScrollYView for scrollable content areas
  7. Use RoundedView for cards and containers (has border_radius)

When not to use it

  • When building non-Makepad UI interfaces
  • When using unsupported animation on Label widgets

Prerequisites

Makepad 2.0 environmentSplash syntax knowledge

Limitations

  • Label does not support Animator
  • MapView requires fixed height
  • new_batch: true required for colored containers with text

How it compares

It enforces a strict component-based architecture and specific layout rules compared to generic UI frameworks.

Compared to similar skills

makepad-widgets side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
makepad-widgets (this skill)14moReviewIntermediate
frontend-design4812moNo flagsAdvanced
screenshot-to-code2042moNo flagsBeginner
textual1439moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

frontend-design

anthropics

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.

481544

screenshot-to-code

OneWave-AI

Convert UI screenshots into working HTML/CSS/React/Vue code. Detects design patterns, components, and generates responsive layouts. Use this when users provide screenshots of websites, apps, or UI designs and want code implementation.

204389

textual

KyleKing

Expert guidance for building TUI (Text User Interface) applications with the Textual framework. Invoke when user asks about Textual development, TUI apps, widgets, screens, CSS styling, reactive programming, or testing Textual applications.

143346

web-artifacts-builder

anthropics

Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.

49162

radix-ui-design-system

sickn33

Build accessible design systems with Radix UI primitives. Headless component customization, theming strategies, and compound component patterns for production-grade UI libraries.

33130

svelte-ui-design

XIYO

ALWAYS use this skill for ANY Svelte component styling, design, or UI work. Svelte 5 UI design system using Tailwind CSS 4, Skeleton Labs design tokens/presets/Tailwind Components, and Bits UI headless components. Covers class composition, color systems, interactive components, forms, overlays, and all visual design.

23136

Search skills

Search the agent skills registry