Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-react-appbarsyncfusion React appbar 搜索

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

661

周安装

27

GitHub Stars

1

下载量

214
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-react-appbar(syncfusion React appbar 搜索)
来源仓库:https://github.com/syncfusion/react-ui-components-skills
仓库路径:skills/syncfusion-react-appbar
安装命令:
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-appbar
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/react-ui-components-skills --skill syncfusion-react-appbar

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构。
  • 使用时需结合项目现有设计系统、路由和构建方式,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • syncfusion-react-appbar 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing Syncfusion React AppBar

The AppBar component creates flexible navigation headers and toolbars at the top or bottom of your application. It's used to display branding, screen titles, navigation controls, and actions while supporting responsive layouts, multiple positioning modes, and rich styling options.

When to Use This Skill

Use AppBar when you need to:

  • Display application branding and navigation at the top/bottom of pages
  • Create action bars with buttons, menus, or dropdowns
  • Build responsive toolbars that adapt to screen size
  • Implement sticky/fixed navigation that stays visible while scrolling
  • Create responsive sidebars with menu navigation
  • Add visual separation between grouped controls
  • Support accessibility standards (WCAG 2.2, Section 508, keyboard navigation)

Documentation and Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Package installation and dependencies
  • React setup (Vite and Create React App)
  • CSS imports and theme configuration
  • Basic AppBar with buttons and icons
  • First working example

Positioning and Layout

📄 Read: references/positioning-and-layout.md

  • Position modes: Top (default), Bottom, Sticky
  • Spacer for horizontal content spacing
  • Separator for visual grouping
  • Media queries for responsive design
  • Layout patterns for different screen sizes

Size and Color Modes

📄 Read: references/size-and-color-modes.md

  • Mode property: Regular, Prominent, Dense
  • ColorMode property: Light, Dark, Primary, Inherit
  • When to use each mode combination
  • Height customization for prominent AppBars
  • Visual hierarchy with color modes

Design Patterns

📄 Read: references/design-patterns.md

  • AppBar with Menu component integration
  • AppBar with Button and DropDownButton
  • AppBar with Sidebar for responsive navigation
  • Navigation and branding patterns
  • e-inherit CSS class usage
  • Responsive sidebar with TreeView

Styling and Accessibility

📄 Read: references/styling-and-accessibility.md

  • CSS customization with cssClass property
  • HTML attributes and aria-label
  • CSS class reference (.e-appbar,.e-prominent, etc.)
  • WCAG 2.2 and Section 508 compliance
  • Keyboard navigation support
  • RTL, color contrast, and mobile support

API Reference

📄 Read: references/api-reference.md

  • Complete property documentation (colorMode, mode, position, isSticky, cssClass, htmlAttributes, enableRtl, enablePersistence, locale)
  • Event documentation (created, destroyed)
  • Working code examples for every property
  • Event handler examples
  • Common property combinations
  • Summary table of all APIs

Quick Start

import { AppBarComponent } from "@syncfusion/ej2-react-navigations";
import { ButtonComponent } from '@syncfusion/ej2-react-buttons';
import * as React from "react";

const App = () => {
  return (
    <AppBarComponent colorMode="Primary">
      <ButtonComponent cssClass='e-inherit menu' iconCss='e-icons e-menu'></ButtonComponent>
      <span className="regular">My App</span>
      <div className="e-appbar-spacer"></div>
      <ButtonComponent cssClass='e-inherit login'>Login</ButtonComponent>
    </AppBarComponent>
  );
}

export default App;

Common Patterns

Pattern 1: Basic Navigation Bar

<AppBarComponent colorMode="Primary">
  <ButtonComponent cssClass="e-inherit" iconCss="e-icons e-menu"></ButtonComponent>
  <ButtonComponent cssClass="e-inherit">Home</ButtonComponent>
  <ButtonComponent cssClass="e-inherit">About</ButtonComponent>
  <div className="e-appbar-spacer"></div>
  <ButtonComponent cssClass="e-inherit">Contact</ButtonComponent>
</AppBarComponent>

Pattern 2: Prominent AppBar with Title

<AppBarComponent colorMode="Primary" mode="Prominent" cssClass="prominent-appbar">
  <ButtonComponent cssClass="e-inherit" iconCss="e-icons e-menu"></ButtonComponent>
  <span className="prominent">Large Title Section</span>
  <div className="e-appbar-spacer"></div>
  <ButtonComponent cssClass="e-inherit">Action</ButtonComponent>
</AppBarComponent>

Pattern 3: Dense Toolbar

<AppBarComponent colorMode="Dark" mode="Dense">
  <ButtonComponent cssClass="e-inherit" iconCss="e-icons e-cut"></ButtonComponent>
  <ButtonComponent cssClass="e-inherit" iconCss="e-icons e-copy"></ButtonComponent>
  <ButtonComponent cssClass="e-inherit" iconCss="e-icons e-paste"></ButtonComponent>
  <div className="e-appbar-separator"></div>
  <ButtonComponent cssClass="e-inherit" iconCss="e-icons e-bold"></ButtonComponent>
</AppBarComponent>

Pattern 4: Sticky AppBar with Bottom Position

<AppBarComponent colorMode="Primary" isSticky position="Bottom">
  <div className="e-appbar-spacer"></div>
  <ButtonComponent cssClass="e-inherit">Save</ButtonComponent>
  <ButtonComponent cssClass="e-inherit">Cancel</ButtonComponent>
</AppBarComponent>

Key Props

Quick reference for the most commonly used AppBar properties:

PropTypeDefaultPurpose
colorModestring"Light"Color scheme: Light, Dark, Primary, Inherit
modestring"Regular"Size mode: Regular, Prominent, Dense
positionstring"Top"Vertical position: Top, Bottom
isStickybooleanfalseStick to viewport while scrolling
cssClassstring-Custom CSS classes for styling
htmlAttributesRecord{}HTML attributes (aria-label, data-*, etc.)
enableRtlbooleanfalseEnable right-to-left direction
enablePersistencebooleanfalsePersist state between reloads
localestring"en-US"Language and culture settings

For detailed explanations and code examples for all properties, events, and methods, see the API Reference.

Common Use Cases

Use Case 1: E-commerce Product Page

  • Primary AppBar at top with brand logo and search
  • Navigation buttons (Home, Products, About)
  • Right-aligned user account and cart icons
  • Sticky so it stays visible when scrolling products

Use Case 2: Admin Dashboard

  • Dark AppBar with application name
  • Left sidebar toggle button (e-menu icon)
  • Center spacer for balance
  • Right-aligned user profile and logout

Use Case 3: Mobile-First App

  • Responsive menu button (hidden on desktop)
  • Dense mode to save screen space
  • Bottom AppBar with action buttons on mobile
  • Top AppBar on desktop with full navigation

Use Case 4: Document Editor

  • Dense AppBar with editing tools (cut, copy, paste)
  • Separators to group related buttons
  • Undo/Redo on left, Format options on right
  • Sticky while editing document

Next Steps: Choose a reference file above based on your specific task. For example, if you're getting started, read "Getting Started". If you need to position the AppBar, read "Positioning and Layout".

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.06%
按下载量换算73

Claude

33.68%
按下载量换算72

Cursor

19.24%
按下载量换算41

Gemini CLI

8.88%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills