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

webf-native-uiwebf 原生用户界面

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

326

周安装

14

GitHub Stars

2,431

下载量

114
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/openwebf/webf --skill webf-native-ui

简介

✅ 本机 UI 库提供预构建的、特定于平台的组件

  • ✅ 适用于 iOS 风格应用程序的 Cupertino UI(现已提供 30 多个组件)
  • ✅ 用于验证表单的表单 UI(现已提供)
  • ✅ Android 风格应用程序即将推出 Material UI
  • ✅ 先安装 Flutter 包,然后安装 npm 包
  • ✅ 根据需要将原生 UI 与 HTML/CSS 混合
  • ✅ 对于复杂的 UI,性能比 HTML/CSS 更好
  • ✅ 完整的 React 和 Vue 支持
  • 每周安装量
  • 14
  • 存储库
  • openwebf/webf
  • GitHub 之星
  • 2.4K
  • 第一次看到
  • 2026 年 1 月 25 日
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克通行证

SKILL.md

WebF Native UI Libraries

Instead of crafting all UIs with HTML/CSS, WebF provides pre-built native UI libraries that render as native Flutter widgets with full native performance. These components look and feel native on each platform while being controlled from your JavaScript code.

What Are Native UI Libraries?

Native UI libraries are collections of UI components that:

  • Render as native Flutter widgets (not DOM elements)
  • Look and feel native on each platform (iOS, Android, etc.)
  • Provide better performance than HTML/CSS for complex UIs
  • Use platform-specific design (Cupertino for iOS, Material for Android)
  • Work with React, Vue, and vanilla JavaScript

Available Library

Cupertino UI ✅

Description: iOS-style components following Apple's Human Interface Guidelines

Platforms: iOS, macOS (optimized for iOS design)

Component Count: 30+ components

Available Components:

  • Navigation & Layout: Tab, Scaffold, TabBar, TabView
  • Dialogs & Sheets: Alert Dialog, Action Sheet, Modal Popup, Context Menu
  • Lists: List Section, List Tile
  • Forms: Form Section, Form Row, TextField, Search Field
  • Pickers: Date Picker, Time Picker
  • Controls: Button, Switch, Slider, Segmented Control, Checkbox, Radio
  • Icons: 1000+ SF Symbols
  • Colors: Cupertino color system

NPM Packages:

  • React: @openwebf/react-cupertino-ui
  • Vue: @openwebf/vue-cupertino-ui

Flutter Package: webf_cupertino_ui

Documentation: https://openwebf.com/en/ui-components/cupertino


When to Use Native UI vs HTML/CSS

Use Cupertino UI When:

  • ✅ Building iOS-style apps
  • ✅ Need native-looking iOS forms, buttons, and controls
  • ✅ Want 60fps native performance for complex UIs
  • ✅ Building iOS lists, dialogs, or navigation patterns
  • ✅ Need Apple's Human Interface Guidelines design language

Use HTML/CSS When:

  • ✅ Building custom designs that don't follow platform patterns
  • ✅ Using existing web component libraries (e.g., Tailwind CSS)
  • ✅ Need maximum flexibility in styling
  • ✅ Porting existing web apps
  • ✅ Building cross-platform designs (not platform-specific)

Setup Instructions

Step 1: Configure Flutter Project (Optional)

If you have access to the Flutter project hosting your WebF app:

For Cupertino UI:

  1. Open your Flutter project's pubspec.yaml
  2. Add the dependency: dependencies: webf_cupertino_ui: ^1.0.0
  3. Run: flutter pub get
  4. Initialize in your main Dart file: import 'package:webf/webf.dart'; import 'package:webf_cupertino_ui/webf_cupertino_ui.dart'; void main() {WebFControllerManager.instance.initialize(WebFControllerManagerConfig(maxAliveInstances: 2, maxAttachedInstances: 1,)); // Install Cupertino UI components installWebFCupertinoUI(); runApp(MyApp());}

Step 2: Install NPM Packages (JavaScript/TypeScript)

For React:

npm install @openwebf/react-cupertino-ui

For Vue:

npm install @openwebf/vue-cupertino-ui

Step 3: Using Components in Your Code

React Example:

import { FlutterCupertinoButton, FlutterCupertinoTextField } from '@openwebf/react-cupertino-ui';

export function MyComponent() {
  return (
    <div>
      <FlutterCupertinoTextField
        placeholder="Enter your name"
        onChanged={(value) => console.log('Value:', value)}
      />
      <FlutterCupertinoButton
        variant="filled"
        onClick={() => console.log('Clicked')}
      >
        Submit
      </FlutterCupertinoButton>
    </div>
  );
}

Vue Example:

<template>
  <div>
    <FlutterCupertinoTextField
      placeholder="Enter your name"
      @changed="handleChange"
    />
    <FlutterCupertinoButton
      variant="filled"
      @click="handleClick"
    >
      Submit
    </FlutterCupertinoButton>
  </div>
</template>

<script setup>
import { FlutterCupertinoTextField, FlutterCupertinoButton } from '@openwebf/vue-cupertino-ui';

const handleChange = (value) => {
  console.log('Value:', value);
};

const handleClick = () => {
  console.log('Clicked');
};
</script>

Component Reference

See the Native UI Component Reference for a complete list of available components and their properties.

Common Patterns

1. Building an iOS-Style Form

import {
  FlutterCupertinoFormSection,
  FlutterCupertinoFormRow,
  FlutterCupertinoTextField,
  FlutterCupertinoButton
} from '@openwebf/react-cupertino-ui';

export function ProfileForm() {
  return (
    <FlutterCupertinoFormSection header="Profile Information">
      <FlutterCupertinoFormRow label="Name">
        <FlutterCupertinoTextField placeholder="John Doe" />
      </FlutterCupertinoFormRow>
      <FlutterCupertinoFormRow label="Email">
        <FlutterCupertinoTextField
          placeholder="john@example.com"
          keyboardType="email"
        />
      </FlutterCupertinoFormRow>
      <FlutterCupertinoButton variant="filled">
        Save Changes
      </FlutterCupertinoButton>
    </FlutterCupertinoFormSection>
  );
}

2. Building a Settings Screen

import {
  FlutterCupertinoListSection,
  FlutterCupertinoListTile,
  FlutterCupertinoSwitch
} from '@openwebf/react-cupertino-ui';

export function SettingsScreen() {
  return (
    <FlutterCupertinoListSection header="Settings">
      <FlutterCupertinoListTile
        title="Notifications"
        trailing={<FlutterCupertinoSwitch value={true} />}
      />
      <FlutterCupertinoListTile
        title="Dark Mode"
        trailing={<FlutterCupertinoSwitch value={false} />}
      />
    </FlutterCupertinoListSection>
  );
}

3. Showing a Native Dialog

import { FlutterCupertinoAlertDialog } from '@openwebf/react-cupertino-ui';

export function ConfirmationDialog({ onConfirm, onCancel }) {
  return (
    <FlutterCupertinoAlertDialog
      title="Confirm Action"
      content="Are you sure you want to proceed?"
      actions={[
        { label: 'Cancel', onPress: onCancel },
        { label: 'Confirm', onPress: onConfirm, isDestructive: true }
      ]}
    />
  );
}

Best Practices

1. Mix Native UI with HTML/CSS

You don't have to use native UI everywhere. Mix and match:

// Use native components for platform-specific UIs
<FlutterCupertinoButton variant="filled">
  Save
</FlutterCupertinoButton>

// Use HTML/CSS for custom layouts
<div className="custom-layout">
  <h1>Custom Design</h1>
  <p>This uses regular HTML/CSS</p>
</div>

2. Use Native UI for Complex Components

Native UI components handle complex interactions better:

  • Date pickers → Use FlutterCupertinoDatePicker instead of HTML input
  • Sliders → Use FlutterCupertinoSlider for native feel
  • Segmented controls → Use FlutterCupertinoSegmentedControl

3. Check Component Documentation

Always check the official documentation for component props and events:

4. Use TypeScript for Type Safety

All native UI packages include TypeScript definitions:

import type { FlutterCupertinoButtonProps } from '@openwebf/react-cupertino-ui';

const buttonProps: FlutterCupertinoButtonProps = {
  variant: 'filled',
  onClick: () => console.log('Clicked')
};

Troubleshooting

Issue: Components Not Rendering

Cause: Flutter package not installed or initialized

Solution:

  1. Check that the Flutter package is in pubspec.yaml
  2. Verify installWebFCupertinoUI() is called in main.dart
  3. Run flutter pub get
  4. Rebuild your Flutter app

Issue: TypeScript Errors for Components

Cause: NPM package not installed correctly

Solution:

# Reinstall the package
npm install @openwebf/react-cupertino-ui --save

# Clear node_modules and reinstall
rm -rf node_modules package-lock.json
npm install

Issue: Vue Components Not Found

Cause: Vue bindings need to be generated

Solution: Follow the "For Vue + Cupertino UI" steps in Step 2 above to generate Vue bindings using webf codegen.

Issue: Props Don't Match Flutter Widget

Cause: WebF automatically converts between JavaScript and Dart naming

Solution:

  • JavaScript uses camelCase: onClick, onChange, placeholder
  • Flutter uses camelCase too, so props map directly
  • Check documentation for exact prop names

Resources

Next Steps

After setting up native UI:

  1. Explore components: Visit https://openwebf.com/en/ui-components to see all available components
  2. Check examples: Look at the gallery apps for React and Vue
  3. Mix with HTML/CSS: Use native UI where it makes sense, HTML/CSS elsewhere
  4. Performance: Native UI components render at 60fps with Flutter-level performance

Summary

  • ✅ Native UI libraries provide pre-built, platform-specific components
  • ✅ Cupertino UI for iOS-style apps (30+ components available now)
  • ✅ Form UI for validated forms (available now)
  • ✅ Material UI coming soon for Android-style apps
  • ✅ Install Flutter packages first, then npm packages
  • ✅ Mix native UI with HTML/CSS as needed
  • ✅ Better performance than HTML/CSS for complex UIs
  • ✅ Full React and Vue support

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

windsurf

27.86%
按下载量换算32

OpenCode

22.55%
按下载量换算26

Codex

18.26%
按下载量换算21

Claude Code

11.93%
按下载量换算14

Antigravity

8.73%
按下载量换算10

Gemini CLI

3.09%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills