← All skills
Tencent SkillHub Β· Developer Tools

SymbolPicker

Expert guidance on SymbolPicker, a native SwiftUI SF Symbol picker. Use when developers mention: (1) SymbolPicker, (2) selecting SF Symbols, (3) picking symbols with colors, (4) customizing symbol picker appearance, (5) cross-platform symbol selection (iOS, macOS, visionOS), (6) specific modifiers like .symbolPickerSymbolsStyle or .symbolPickerDismiss.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Expert guidance on SymbolPicker, a native SwiftUI SF Symbol picker. Use when developers mention: (1) SymbolPicker, (2) selecting SF Symbols, (3) picking symbols with colors, (4) customizing symbol picker appearance, (5) cross-platform symbol selection (iOS, macOS, visionOS), (6) specific modifiers like .symbolPickerSymbolsStyle or .symbolPickerDismiss.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/SetUp.md, references/SymbolColor.md, references/SymbolPicker.md, references/SymbolPickerModifiers.md, references/SymbolPickerView.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Overview

This skill provides expert guidance on SymbolPicker, a native, customizable SwiftUI component for selecting SF Symbols on iOS, iPadOS, macOS, and visionOS. It mimics Apple’s native interface while offering extensive customization for colors, styles (filled/outlined), and behavior.

Agent Behavior (Follow These Rules)

Identify Platform Targets: SymbolPicker adapts to each platform (sheet on iOS, popover on iPad/Mac/visionOS). Always verify the target platform. Prioritize Modifiers: Direct users to the relevant SymbolPicker modifiers (e.g., .symbolPickerSymbolsStyle, .symbolPickerDismiss) for customization. Handle Colors Correctly: When discussing color selection, clarify if the user wants to use [Double] (RGBA), SwiftUI Color, or SymbolColor. Emphasize Accessibility: Highlight that SymbolPicker supports VoiceOver and Dynamic Type out of the box. Contextual Examples: Provide concise code snippets showing the .symbolPicker modifier applied to a view (usually a Button or Image), with bindings for presentation and selection. Cross-Platform Consistency: Remind users that the API is unified across platforms.

Project Settings

Deployment Targets: iOS 14.0+, iPadOS 14.0+, macOS 11.0+, visionOS 1.0+. Swift Version: Swift 5.9+. Xcode: Xcode 15.0+.

Quick Decision Tree

Setting up a basic symbol picker? Basic installation and concepts β†’ references/SymbolPicker.md To apply the modifier to a view β†’ references/SymbolPickerView.md Picking symbols with color? To use different color binding types β†’ references/SymbolPickerView.md To understand the SymbolColor model β†’ references/SymbolColor.md Customizing appearance or behavior? Switching between filled/outlined icons β†’ references/SymbolPickerModifiers.md (.symbolPickerSymbolsStyle) Controlling dismissal behavior β†’ references/SymbolPickerModifiers.md (.symbolPickerDismiss)

Triage-First Playbook

"The picker isn't showing up." Check if .symbolPicker(isPresented: ...) is attached to a view that is part of the hierarchy. Ensure the isPresented binding is being toggled true. "I want filled icons instead of outlines." Use .symbolPickerSymbolsStyle(.filled). "How do I close the picker immediately after selecting a symbol?" Use .symbolPickerDismiss(type: .onSymbolSelect).

Basic Usage

@State private var isPresented = false @State private var icon = "star" Button("Pick Icon") { isPresented = true } .symbolPicker(isPresented: $isPresented, symbolName: $icon)

With Color Selection

@State private var isPresented = false @State private var icon = "star.fill" @State private var color: Color = .red Button("Pick Icon & Color") { isPresented = true } .symbolPicker(isPresented: $isPresented, symbolName: $icon, color: $color) .symbolPickerSymbolsStyle(.filled) .symbolPickerDismiss(type: .onSymbolSelect)

Integration Quick Guide

Add Package Dependency: https://github.com/SzpakKamil/SymbolPicker.git (Min version 1.0.0). Import: import SymbolPicker. Requirements: iOS 14.0+, macOS 11.0+, visionOS 1.0+.

Reference Files

Load these files as needed for specific topics: SymbolPicker.md - General overview, setup, and core benefits. SymbolPickerView.md - Detailed information on the picker view and its initializers. SymbolPickerModifiers.md - Customization of style (filled/outlined) and dismissal behavior. SymbolColor.md - Guide to using the SymbolColor enum and color bindings. SetUp.md - Step-by-step installation instructions.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • references/SetUp.md Docs
  • references/SymbolColor.md Docs
  • references/SymbolPicker.md Docs
  • references/SymbolPickerModifiers.md Docs
  • references/SymbolPickerView.md Docs